Scientific measurement library for instruments, experiments, and live-plotting

PyMeasure scientific package PyMeasure makes scientific measurements easy to set up and run. The package contains a repository of instrument classes and a system for running experiment procedures, which provides graphical interfaces for graphing live data and managing queues of experiments. Both parts of the package are independent, and when combined provide all the necessary requirements for advanced measurements with only limited coding. PyMeasure is currently under active development, so please report any issues you experience to our Issues page. […]

Read more

A Tool for automatically reordering python imports

reorder_python_imports Rewrites source to reorder python imports. Tool for automatically reordering python imports. Similar to isort but uses static analysis more. Installation pip install reorder-python-imports Console scripts Consult reorder-python-imports –help for the full set of options. reorder-python-imports takes filenames as positional arguments Common options: –py##-plus: see below. –add-import / –remove-import: see below. –replace-import: see below. –application-directories: by default, reorder-python-imports assumesyour project is rooted at .. If this isn’t true, tell it where yourimport roots live. For example, when using the […]

Read more

Fully automatic light management based on conditions like motion

ad-automoli Fully automatic light management based on conditions like motion, illuminance, humidity, and other clever features. Fully automatic light management based on motion as AppDaemon app. 🕓 multiple daytimes to define different scenes for morning, noon, …💡 supports Hue (for Hue Rooms/Groups) & Home Assistant scenes🔌 switches lights and plugs (with lights)☀️ supports illumination sensors to switch the light just if needed💦 supports humidity sensors as blocker (the “shower case“)🔍 automatic discovery of lights and sensors⛰️ stable and tested by […]

Read more

Telegram Userbot built with Pyrogram

Pyrogram Userbot A Telegram Userbot based on Pyrogram This repository contains the source code of a Telegram Userbot and the instructions for running a copy yourself. Beside its main purpose, the bot is featuring Pyrogram Asyncio and Smart Plugins; feel free to explore the source code to learn more about these topics. I assume you will read this whole README.md file before continuing. Development in progress. Requirements You’re gonna need to get the following programs and services either installed on […]

Read more

Python package for covariance matrices manipulation and Biosignal classification

pyRiemann pyRiemann is a python package for covariance matrices manipulation and classification through Riemannian geometry. The primary target is classification of multivariate biosignals, like EEG, MEG or EMG. This is work in progress … stay tuned. This code is BSD-licenced (3 clause). Documentation The documentation is available on http://pyriemann.readthedocs.io/en/latest/ Install Using PyPI pip install pyriemann or using pip+git for the latest version of the code : pip install git+https://github.com/pyRiemann/pyRiemann Anaconda is not currently supported, if you want to use anaconda, […]

Read more

Machine Translation Weekly 86: The Wisdom of the WMT Crowd

Most of the papers that I comment on and review here present novel and cool ideas on how to improve something in machine translation or multilingual NLP. On the other hand, the WMT submissions are different. People want to get the best translation quality and value efficiency, and simplicity. Novelty and prettiness of the ideas are secondary. WMT organizes annual competitions in machine translation quality (and other tasks related to machine translation) where dozens of companies and universities participate. Each […]

Read more

Advanced Deep Learning with TensorFlow 2 and Keras

dvanced-Deep-Learning-with-Keras This is the code repository for Advanced Deep Learning with TensoFlow 2 and Keras, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish. Please note that the code examples have been updated to support TensorFlow 2.0 Keras API only. About the Book Advanced Deep Learning with TensorFlow 2 and Keras, Second Edition is a completely updated edition of the bestselling guide to the advanced deep learning techniques available […]

Read more

Deep Learning with PyTorch Step-by-Step: A Beginner’s Guide

Deep Learning with PyTorch Step-by-Step This is the official repository of my book “Deep Learning with PyTorch Step-by-Step“. Here you will find one Jupyter notebook for every chapter in the book. Each notebook contains all the code shown in its corresponding chapter, and you should be able torun its cells in sequence to get the same outputs as shown in the book. I strongly believe that being able to reproduce the results brings confidence to the reader. There are three […]

Read more

Creates clean and beautiful plots that work on light and dark backgrounds

dufte This package creates clean and beautiful plots that work on light and dark backgrounds. Inspired by the work of Edward Tufte. To use, simply select the dufte style: import dufte import matplotlib.pyplot as plt # global setting: plt.style.use(dufte.style) # with a context manager: with plt.style.context(dufte.style_bar): # … pass Check out dufte.legend(), dufte.ylabel(), and dufte.show_bar_values() for more duftiness. Comparison with default Matplotlib See here for how to create the below plots. matplotlib dufte with dufte.legend() matplotlib dufte dufte with dufte.show_bar_values() […]

Read more

A Python parser that takes the content of a text file and then reads into variables

Text-File-Parser A Python parser that takes the content of a text file and then reads into variables. Input.text File 1. What is your ***? 1. 18 – 34 2. 35- 44 3. 45- 54 4. 55-64 5. Over 65 6. Don’t know 2. What *** do you live in? 1. Ontario 2. Quebec 3. Manitoba 4. Alberta 5. Other Given a plain text file as above, this Python script reads all the questions and their numbers, storing them into two […]

Read more
1 533 534 535 536 537 913