Notification Triggers for Python

Related tags

Deep Learningnotipyer
Overview

Notipyer

Notification triggers for Python

Send async email notifications via Python. Get updates/crashlogs from your scripts with ease.

Installation

python -m venv env
source env/bin/activate
pip install notipyer

Email Notifications

Notipyer currently supports Gmail accounts as senders. To allow the library to use your gmail account, make the following changes:

  1. Turn off 2-Step authentication. Ref
  2. Turn on "Less Secure App Access" here

Configuration

from notipyer.email_notify import set_email_config

SENDER_EMAIL = '[email protected]'
SENDER_PASS = 'password'
set_email_config(SENDER_EMAIL, SENDER_PASS)

Sending Email

from notipyer.email_notify import send_email

subject = 'My Email Subject'
body = 'My Email Body'
to_recipients = ['[email protected]', '[email protected]'] # Can be None
cc_recipients = ['[email protected]', '[email protected]'] # Can be None
bcc_recipients = ['[email protected]', '[email protected]'] # Can be None

send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)

Contact

Chirag Jain

You might also like...
Automatic self-diagnosis program (python required)Automatic self-diagnosis program (python required)

auto-self-checker 자동으로 자가진단 해주는 프로그램(python 필요) 중요 이 프로그램이 실행될때에는 절대로 마우스포인터를 움직이거나 키보드를 건드리면 안된다(화면인식, 마우스포인터로 직접 클릭) 사용법 프로그램을 구동할 폴더 내의 cmd창에서 pip

POPPY (Physical Optics Propagation in Python) is a Python package that simulates physical optical propagation including diffraction
POPPY (Physical Optics Propagation in Python) is a Python package that simulates physical optical propagation including diffraction

POPPY: Physical Optics Propagation in Python POPPY (Physical Optics Propagation in Python) is a Python package that simulates physical optical propaga

Space-invaders - Simple Game created using Python & PyGame, as my Beginner Python Project
Space-invaders - Simple Game created using Python & PyGame, as my Beginner Python Project

Space Invaders This is a simple SPACE INVADER game create using PYGAME whihc hav

Snapchat-filters-app-opencv-python - Here we used opencv and other inbuilt python modules to create filter application like snapchat Yolov5-opencv-cpp-python - Example of using ultralytics YOLO V5 with OpenCV 4.5.4, C++ and Python
Yolov5-opencv-cpp-python - Example of using ultralytics YOLO V5 with OpenCV 4.5.4, C++ and Python

yolov5-opencv-cpp-python Example of performing inference with ultralytics YOLO V

Python-kafka-reset-consumergroup-offset-example - Python Kafka reset consumergroup offset example

Python Kafka reset consumergroup offset example This is a simple example of how

Experimental Python implementation of OpenVINO Inference Engine (very slow, limited functionality). All codes are written in Python. Easy to read and modify.
Experimental Python implementation of OpenVINO Inference Engine (very slow, limited functionality). All codes are written in Python. Easy to read and modify.

PyOpenVINO - An Experimental Python Implementation of OpenVINO Inference Engine (minimum-set) Description The PyOpenVINO is a spin-off product from my

A python-image-classification web application project, written in Python and served through the Flask Microframework
A python-image-classification web application project, written in Python and served through the Flask Microframework

A python-image-classification web application project, written in Python and served through the Flask Microframework. This Project implements the VGG16 covolutional neural network, through Keras and Tensorflow wrappers, to make predictions on uploaded images.

A python-image-classification web application project, written in Python and served through the Flask Microframework. This Project implements the VGG16 covolutional neural network, through Keras and Tensorflow wrappers, to make predictions on uploaded images.
Comments
  • Bump certifi from 2020.12.5 to 2022.12.7

    Bump certifi from 2020.12.5 to 2022.12.7

    Bumps certifi from 2020.12.5 to 2022.12.7.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 0
Releases(v0.3.3)
  • v0.3.3(Mar 28, 2022)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    SENDER_NAME = 'my name'
    set_email_config(SENDER_EMAIL, SENDER_PASS, SENDER_NAME)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    attachment_path = 'path_to_my_file' # Can be None
    html = """\
    <html>
      <head></head>
      <body>
        <p>Hi!<br>
           How are you?<br>
        </p>
      </body>
    </html>
    """ # Can be None
    is_async = True # Sent as an async email only if this parameter is True
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients, attachment_path, html_text, is_async)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
  • v0.3.2(Feb 9, 2022)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    SENDER_NAME = 'my name'
    set_email_config(SENDER_EMAIL, SENDER_PASS, SENDER_NAME)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    attachment_path = 'path_to_my_file' # Can be None
    is_async = True # Sent as an async email only if this parameter is True
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients, attachment_path, is_async)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
  • v0.3.1(Feb 9, 2022)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    SENDER_NAME = 'my name'
    set_email_config(SENDER_EMAIL, SENDER_PASS, SENDER_NAME)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    attachment_path = 'path_to_my_file' # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients, attachment_path)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
  • v0.2.3(Dec 25, 2021)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    SENDER_NAME = 'my name'
    set_email_config(SENDER_EMAIL, SENDER_PASS, SENDER_NAME)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
  • v0.2.1(Sep 5, 2021)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    SENDER_NAME = 'my name'
    set_email_config(SENDER_EMAIL, SENDER_PASS, SENDER_NAME)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
    Notipyer-0.2.1.tar.gz(3.49 KB)
    Notipyer-0.2.1.win-amd64.zip(12.94 KB)
  • v0.2.0(Aug 27, 2021)

    Notipyer

    Notification Triggers for Python

    Send async email and slack notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your Gmail account, make the following changes:

    1. Turn on 2-Step authentication. Ref
    2. Create an app password. Ref
    3. While creating an app password, select app as "Other (Custom name)" and enter a name of your choice.
    4. Use the password obtained from app password for the configuration step below.
    5. More information can be obtained on the wiki page here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'my_app_password'
    set_email_config(SENDER_EMAIL, SENDER_PASS)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Slack Notifications

    Notipyer currently supports running a single workplace install only.

    For setting up token keys for using slack notifications, follow the wiki page here

    Configuration

    from notipyer.slack_notify import set_slack_token_config
    
    # Follow the wiki for getting the bot token
    BOT_TOKEN = 'xoxb-12345678990123-1234567890123-abcdefghijklmnopqrstuvwx' 
    set_slack_token_config(BOT_TOKEN)
    

    Sending Message

    from notipyer.slack_notify import send_message
    
    # the bot should be added to the channel
    channel = 'my-channel-name'
    message = 'my-message'
    
    set_slack_token_config(SLACK_TOKEN)
    send_message(channel, message)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
  • v0.1.2(May 29, 2021)

    Notipyer

    Notification triggers for Python

    Send async email notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your gmail account, make the following changes:

    1. Turn off 2-Step authentication. Ref
    2. Turn on "Less Secure App Access" here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'password'
    set_email_config(SENDER_EMAIL, SENDER_PASS)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
    notipyer-0.1.2.tar.gz(3.20 KB)
  • v0.1.1(May 29, 2021)

    Notipyer

    Notification triggers for Python

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your gmail account, make the following changes:

    1. Turn off 2-Step authentication. Ref
    2. Turn on "Less Secure App Access" here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'password'
    set_email_config(SENDER_EMAIL, SENDER_PASS)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
    notipyer-0.1.1.tar.gz(3.14 KB)
  • v.0.1.3(May 29, 2021)

    Notipyer

    Notification triggers for Python

    Send async email notifications via Python. Get updates/crashlogs from your scripts with ease.

    Installation

    python -m venv env
    source env/bin/activate
    pip install notipyer
    

    Email Notifications

    Notipyer currently supports Gmail accounts as senders. To allow the library to use your gmail account, make the following changes:

    1. Turn off 2-Step authentication. Ref
    2. Turn on "Less Secure App Access" here

    Configuration

    from notipyer.email_notify import set_email_config
    
    SENDER_EMAIL = '[email protected]'
    SENDER_PASS = 'password'
    set_email_config(SENDER_EMAIL, SENDER_PASS)
    

    Sending Email

    from notipyer.email_notify import send_email
    
    subject = 'My Email Subject'
    body = 'My Email Body'
    to_recipients = ['[email protected]', '[email protected]'] # Can be None
    cc_recipients = ['[email protected]', '[email protected]'] # Can be None
    bcc_recipients = ['[email protected]', '[email protected]'] # Can be None
    
    send_email(subject, body, to_recipients, cc_recipients, bcc_recipients)
    

    Contact

    Chirag Jain

    Source code(tar.gz)
    Source code(zip)
    notipyer-0.1.3.tar.gz(3.12 KB)
Owner
Chirag Jain
CSE Undergrad at IIIT Delhi
Chirag Jain
U-Net for GBM

My Final Year Project(FYP) In National University of Singapore(NUS) You need Pytorch(stable 1.9.1) Both cuda version and cpu version are OK File Str

PinkR1ver 1 Oct 27, 2021
Next-gen Rowhammer fuzzer that uses non-uniform, frequency-based patterns.

Blacksmith Rowhammer Fuzzer This repository provides the code accompanying the paper Blacksmith: Scalable Rowhammering in the Frequency Domain that is

Computer Security Group @ ETH Zurich 173 Nov 16, 2022
Lightweight Face Image Quality Assessment

LightQNet This is a demo code of training and testing [LightQNet] using Tensorflow. Uncertainty Losses: IDQ loss PCNet loss Uncertainty Networks: Mobi

Kaen 5 Nov 18, 2022
MOpt-AFL provided by the paper "MOPT: Optimized Mutation Scheduling for Fuzzers"

MOpt-AFL 1. Description MOpt-AFL is a AFL-based fuzzer that utilizes a customized Particle Swarm Optimization (PSO) algorithm to find the optimal sele

172 Dec 18, 2022
SFD implement with pytorch

S³FD: Single Shot Scale-invariant Face Detector A PyTorch Implementation of Single Shot Scale-invariant Face Detector Description Meanwhile train hand

Jun Li 251 Dec 22, 2022
Yolov5+SlowFast: Realtime Action Detection Based on PytorchVideo

Yolov5+SlowFast: Realtime Action Detection A realtime action detection frame work based on PytorchVideo. Here are some details about our modification:

WuFan 181 Dec 30, 2022
Implementation of ML models like Decision tree, Naive Bayes, Logistic Regression and many other

ML_Model_implementaion Implementation of ML models like Decision tree, Naive Bayes, Logistic Regression and many other dectree_model: Implementation o

Anshuman Dalai 3 Jan 24, 2022
This is the code repository implementing the paper "TreePartNet: Neural Decomposition of Point Clouds for 3D Tree Reconstruction".

TreePartNet This is the code repository implementing the paper "TreePartNet: Neural Decomposition of Point Clouds for 3D Tree Reconstruction". Depende

刘彦超 34 Nov 30, 2022
Price-Prediction-For-a-Dream-Home - A machine learning based linear regression trained model for house price prediction.

Price-Prediction-For-a-Dream-Home ROADMAP TO THIS LINEAR REGRESSION BASED HOUSE PRICE PREDICTION PREDICTION MODEL Import all the dependencies of the p

DIKSHA DESWAL 1 Dec 29, 2021
Create UIs for prototyping your machine learning model in 3 minutes

Note: We just launched Hosted, where anyone can upload their interface for permanent hosting. Check it out! Welcome to Gradio Quickly create customiza

Gradio 11.7k Jan 07, 2023
Static Features Classifier - A static features classifier for Point-Could clusters using an Attention-RNN model

Static Features Classifier This is a static features classifier for Point-Could

ABDALKARIM MOHTASIB 1 Jan 25, 2022
Keras like implementation of Deep Learning architectures from scratch using numpy.

Mini-Keras Keras like implementation of Deep Learning architectures from scratch using numpy. How to contribute? The project contains implementations

MANU S PILLAI 5 Oct 10, 2021
🧮 Matrix Factorization for Collaborative Filtering is just Solving an Adjoint Latent Dirichlet Allocation Model after All

Accompanying source code to the paper "Matrix Factorization for Collaborative Filtering is just Solving an Adjoint Latent Dirichlet Allocation Model A

Florian Wilhelm 39 Dec 03, 2022
Real-Time SLAM for Monocular, Stereo and RGB-D Cameras, with Loop Detection and Relocalization Capabilities

ORB-SLAM2 Authors: Raul Mur-Artal, Juan D. Tardos, J. M. M. Montiel and Dorian Galvez-Lopez (DBoW2) 13 Jan 2017: OpenCV 3 and Eigen 3.3 are now suppor

Raul Mur-Artal 7.8k Dec 30, 2022
On Nonlinear Latent Transformations for GAN-based Image Editing - PyTorch implementation

On Nonlinear Latent Transformations for GAN-based Image Editing - PyTorch implementation On Nonlinear Latent Transformations for GAN-based Image Editi

Valentin Khrulkov 22 Oct 24, 2022
A data-driven maritime port simulator

PySeidon - A Data-Driven Maritime Port Simulator 🌊 Extendable and modular software for maritime port simulation. This software uses entity-component

6 Apr 10, 2022
An University Project of Quera Web Crawling.

WebCrawlerProject An University Project of Quera Web Crawling. خزشگر اینستاگرام در این پروژه شما باید با استفاده از کتابخانه های زیر یک خزشگر اینستاگر

Mahdi 3 Aug 12, 2022
No-reference Image Quality Assessment(NIQA) Algorithms (BRISQUE, NIQE, PIQE, RankIQA, MetaIQA)

No-Reference Image Quality Assessment Algorithms No-reference Image Quality Assessment(NIQA) is a task of evaluating an image without a reference imag

Dae-Young Song 26 Jan 04, 2023
Official Implementation of VAT

Semantic correspondence Few-shot segmentation Cost Aggregation Is All You Need for Few-Shot Segmentation For more information, check out project [Proj

Hamacojr 114 Dec 27, 2022
DABO: Data Augmentation with Bilevel Optimization

DABO: Data Augmentation with Bilevel Optimization [Paper] The goal is to automatically learn an efficient data augmentation regime for image classific

ElementAI 24 Aug 12, 2022