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
Direct design of biquad filter cascades with deep learning by sampling random polynomials.

IIRNet Direct design of biquad filter cascades with deep learning by sampling random polynomials. Usage git clone https://github.com/csteinmetz1/IIRNe

Christian J. Steinmetz 55 Nov 02, 2022
Abstractive opinion summarization system (SelSum) and the largest dataset of Amazon product summaries (AmaSum). EMNLP 2021 conference paper.

Learning Opinion Summarizers by Selecting Informative Reviews This repository contains the codebase and the dataset for the corresponding EMNLP 2021

Arthur Bražinskas 39 Jan 01, 2023
Official Pytorch Implementation of Unsupervised Image Denoising with Frequency Domain Knowledge

Unsupervised Image Denoising with Frequency Domain Knowledge (BMVC 2021 Oral) : Official Project Page This repository provides the official PyTorch im

Donggon Jang 12 Sep 26, 2022
This folder contains the implementation of the multi-relational attribute propagation algorithm.

MrAP This folder contains the implementation of the multi-relational attribute propagation algorithm. It requires the package pytorch-scatter. Please

6 Dec 06, 2022
PyTorch implementation of our paper: Decoupling and Recoupling Spatiotemporal Representation for RGB-D-based Motion Recognition

Decoupling and Recoupling Spatiotemporal Representation for RGB-D-based Motion Recognition, arxiv This is a PyTorch implementation of our paper. 1. Re

DamoCV 11 Nov 19, 2022
PyTorch Implementation of [1611.06440] Pruning Convolutional Neural Networks for Resource Efficient Inference

PyTorch implementation of [1611.06440 Pruning Convolutional Neural Networks for Resource Efficient Inference] This demonstrates pruning a VGG16 based

Jacob Gildenblat 836 Dec 26, 2022
A parallel framework for population-based multi-agent reinforcement learning.

MALib: A parallel framework for population-based multi-agent reinforcement learning MALib is a parallel framework of population-based learning nested

MARL @ SJTU 348 Jan 08, 2023
Anonymize BLM Protest Images

Anonymize BLM Protest Images This repository automates @BLMPrivacyBot, a Twitter bot that shows the anonymized images to help keep protesters safe. Us

Stanford Machine Learning Group 40 Oct 13, 2022
LSTC: Boosting Atomic Action Detection with Long-Short-Term Context

LSTC: Boosting Atomic Action Detection with Long-Short-Term Context This Repository contains the code on AVA of our ACM MM 2021 paper: LSTC: Boosting

Tencent YouTu Research 9 Oct 11, 2022
Open-L2O: A Comprehensive and Reproducible Benchmark for Learning to Optimize Algorithms

Open-L2O This repository establishes the first comprehensive benchmark efforts of existing learning to optimize (L2O) approaches on a number of proble

VITA 161 Jan 02, 2023
FastReID is a research platform that implements state-of-the-art re-identification algorithms.

FastReID is a research platform that implements state-of-the-art re-identification algorithms.

JDAI-CV 2.8k Jan 07, 2023
PyTorch DepthNet Training on Still Box dataset

DepthNet training on Still Box Project page This code can replicate the results of our paper that was published in UAVg-17. If you use this repo in yo

Clément Pinard 115 Nov 21, 2022
DPC: Unsupervised Deep Point Correspondence via Cross and Self Construction (3DV 2021)

DPC: Unsupervised Deep Point Correspondence via Cross and Self Construction (3DV 2021) This repo is the implementation of DPC. Tested environment Pyth

Dvir Ginzburg 30 Nov 30, 2022
The-Secret-Sharing-Schemes - This interactive script demonstrates the Secret Sharing Schemes algorithm

The-Secret-Sharing-Schemes This interactive script demonstrates the Secret Shari

Nishaant Goswamy 1 Jan 02, 2022
PyTorch implementation of a Real-ESRGAN model trained on custom dataset

Real-ESRGAN PyTorch implementation of a Real-ESRGAN model trained on custom dataset. This model shows better results on faces compared to the original

Sber AI 160 Jan 04, 2023
ICLR2021 (Under Review)

Self-Supervised Time Series Representation Learning by Inter-Intra Relational Reasoning This repository contains the official PyTorch implementation o

Haoyi Fan 58 Dec 30, 2022
Code repo for EMNLP21 paper "Zero-Shot Information Extraction as a Unified Text-to-Triple Translation"

Zero-Shot Information Extraction as a Unified Text-to-Triple Translation Source code repo for paper Zero-Shot Information Extraction as a Unified Text

cgraywang 88 Dec 31, 2022
Code for paper "Extract, Denoise and Enforce: Evaluating and Improving Concept Preservation for Text-to-Text Generation" EMNLP 2021

The repo provides the code for paper "Extract, Denoise and Enforce: Evaluating and Improving Concept Preservation for Text-to-Text Generation" EMNLP 2

Yuning Mao 18 May 24, 2022
Code for Massive-scale Decoding for Text Generation using Lattices

Massive-scale Decoding for Text Generation using Lattices Jiacheng Xu, Greg Durrett TL;DR: a new search algorithm to construct lattices encoding many

Jiacheng Xu 37 Dec 18, 2022
An Efficient Training Approach for Very Large Scale Face Recognition or F²C for simplicity.

Fast Face Classification (F²C) This is the code of our paper An Efficient Training Approach for Very Large Scale Face Recognition or F²C for simplicit

33 Jun 27, 2021