A live profiling and inspection tool for the Django framework

Silk is a live profiling and inspection tool for the Django framework. Silk intercepts and stores HTTP requests and database queries before presenting them in a user interface for further inspection: SECURITY NOTE: Because Silk stores all HTTP requests into the database in plain text, it will store the request’s sensitive information into the database in plain text (e.g. users’ passwords!). This is a massive security concern. An issue has been created for this here. Contents Requirements Silk    

Read more

Web testing library for Robot Framework

SeleniumLibrary is a web testing library for Robot Framework that utilizes the Selenium tool internally. The project is hosted on GitHub and downloads can be found from PyPI. SeleniumLibrary works with Selenium 3 and 4. It supports Python 3.6 or newer. In addition to the normal Python interpreter, it works also with PyPy. SeleniumLibrary is based on the old SeleniumLibrary that was forked to Selenium2Library and then later renamed back to SeleniumLibrary. See the Versions and History sections below for […]

Read more

Do Prompt-Based Models Really Understand the Meaning of Their Prompts?

This repository accompanies our paper “Do Prompt-Based Models Really Understand the Meaning of Their Prompts?” Usage To replicate our results in Section 4, run: python3 prompt_tune.py –save-dir ../runs/prompt_tuned_sec4/ –prompt-path ../data/binary_NLI_prompts.csv –experiment-name sec4 –few-shots 3,5,10,20,30,50,100,250 –production –seeds 1 Add –fully-train if you want to train on the entire training set in addition to few-shot settings. To replicate Section 5, run: python3 prompt_tune.py –save-dir ../runs/prompt_tuned_sec5/ –prompt-path ../data/binary_NLI_prompts_permuted.csv    

Read more

Reading list for research topics in sound event detection

Reading List for topics in Sound Event Detection Introduction Sound event detection aims at processing the continuous acoustic signal and converting it into symbolic descriptions of the corresponding sound events present at the auditory scene. Sound event detection can be utilized in a variety of applications, including context-based indexing and retrieval in multimedia databases, unobtrusive monitoring in health care, and surveillance. Recently (since 2017), to utilise large multimedia data available, learning acoustic information from weak annotations was formulated. This reading […]

Read more

Yet Another Reinforcement Learning Tutorial

This repo contains self-contained RL implementations including For those who want to run without git clone, please find the colab notebooks in this Google Drive. Lecture notes can also be found in this repo. It contains: RL applications Model-based methods (MDP, Value Iteration, Policy Iteraction, etc) Model-free methods (MC, TD, SARSA, Q-learning, etc) Policy-based methods (TRPO, PPO, SAC, etc) Population-based methods (CEM, CMA-ES, ARS) Summary contact: sungjoon-choi at korea dot ac dot kr GitHub https://github.com/sjchoi86/rl_tutorial    

Read more

Extensive collection of Python projects from PyPI, for Nix

Extensive collectionof Python projectsfrom the Python Packaging Index.That can be installed with the Nix package manager. Checkout the projects folder,each entry represents a project and its available versions. For example: Project: awscli and version: 1.20.31, or Project: requests and version 2.26.0 If you want to refer to the latest version available you can do it: Project: awscli and version latest, or Project: requests and version: latest If you want to only use the binaries of a projectyou can install them […]

Read more

Examples of Askdata usage in serving different types of data

This repository contains examples of Askdata usage in serving different types of data. Installation pip install askdata orpip install -r requirements.txt Authentication Lets handle our authenticaton from askdata import Askdata askdata = Askdata() Once your insert your account and password you’re all set Query your data # Load the list of the agents connected to your account as a pandas dataframe get_agents_df = askdata.agents_dataframe() #get one agent agent = askdata.agent(“sales_demo”) # Simple query df = agent.ask(‘give me sales by countries’) […]

Read more

Official Notion SDK rewritten in Python (sync + async)

notion-sdk-py This client is meant to be a Python version of the reference JavaScript SDK,so usage should be pretty similar between both. 😊 📢 Announcement (14-08-2021) — 0.6.0 is now released and adds support forthe recent Notion API changes.Upgrading should be seamless from 0.4.0 onwards. Installation pip install notion-client Usage Before getting started, create an integrationand find the token.→ Learn more about authorization. Import and initialize a client using an integration token or anOAuth access token. import os from notion_client […]

Read more

Easy way to use Telegram bot to hide your identity

Easy way to use Telegram bot to hide your identity. Useful for support, anonymous channel management. Free clone of Livegram Bot. How bot works: Your client write a message to your bot Bot forwards the message to your secret chat Any chat participant can reply on a forwarded message Bot will copy the message and send it to your client .env variables You need to specify these env variables to run this bot. If you run it locally, you can […]

Read more
1 32 33 34 35 36 48