Embed to Control implementation in PyTorch

e2c-pytorch Paper can be found here: https://arxiv.org/abs/1506.07365 You will need a patched version of OpenAI Gym in order to generate the dataset. See https://github.com/ethanluoyc/gym/tree/pendulum_internal For the planar task, we use code from. The source code of the repository has been modified for our needs and included under e2c/e2c_tf. What’s included ? E2C model, VAE and AE baselines. Allow configuration for different network architecture for the different setups (see Appendix of the paper). TODO Documentation, tests… (Soon to follow) GitHub https://github.com/ethanluoyc/e2c-pytorch […]

Read more

PyTorch implementation of Advantage Actor Critic

pytorch-a2c-ppo-acktr PyTorch implementation of Advantage Actor Critic (A2C), Proximal Policy Optimization (PPO), Scalable trust-region method for deep reinforcement learning using Kronecker-factored approximation (ACKTR) and Generative Adversarial Imitation Learning (GAIL). Please use hyper parameters from this readme. With other hyper parameters things might not work (it’s RL after all)! This is a PyTorch implementation of Advantage Actor Critic (A2C), a synchronous deterministic version of A3C Proximal Policy Optimization PPO Scalable trust-region method for deep reinforcement learning using Kronecker-factored approximation ACKTR Generative […]

Read more

TOOD: Task-aligned One-stage Object Detection

TOOD TOOD: Task-aligned One-stage Object Detection (ICCV 2021 Oral) One-stage object detection is commonly implemented by optimizing two sub-tasks: object classification and localization, using heads with two parallel branches, which might lead to a certain level of spatial misalignment in predictions between the two tasks. In this work, we propose a Task-aligned One-stage Object Detection (TOOD) that explicitly aligns the two tasks in a learning-based manner. First, we design a novel Task-aligned Head (T-Head) which offers a better balance between […]

Read more

OpenQuake’s Engine for Seismic Hazard and Risk Analysis

OpenQuake Engine The OpenQuake Engine is an open source application that allows users to compute seismic hazard and seismic risk of earthquakes on a global scale. It runs on Linux, macOS and Windows, on laptops, workstations, standalone servers and multi-node clusters. DOI: 10.13117/openquake.engine Current stable Current stable version is the OpenQuake Engine 3.11 ‘Wegener’. The documentation is available at https://github.com/gem/oq-engine/tree/engine-3.11#openquake-engine. GitHub https://github.com/gem/oq-engine    

Read more

A fast, easy to set up telegram userbot running Python 3

A fast, easy to set up telegram userbot running Python 3 which uses fork ofthe Telethon Library. Friendly Telegram, also known as FTG, is not your average Telegram userbot: it’s faster, can load modules dynamicallyand is very easy to use! Changes Latest Telethon lib Security improvements (.session file name not contain full phone number, DeleteAccountRequest disabled, and more) UX improvements (IP address in config script, random port on first launch, etc) Stock modules updates (New functions, bug fixed) Modules Repo […]

Read more

A Python library to manage ACBF ebooks

A Python library to read and edit ACBF formatted comic book files and archives. XML Specifications here: https://acbf.fandom.com/wiki/Advanced_Comic_Book_Format_Wiki Installation pip install libacbf See Installation and Dependencies for moreinformation. PyPI Link. Documentation Read the documentation here.https://libacbf.readthedocs.io/en/stable/ GitHub https://github.com/Grafcube/libacbf    

Read more

POPPY: Physical Optics Propagation in Python

POPPY (Physical Optics Propagation in Python) is a Python package that simulates physical optical propagation including diffraction. It implements a flexible framework for modeling Fraunhofer and Fresnel diffraction and point spread function formation, particularly in the context of astronomical telescopes. POPPY was developed as part of a simulation package for the James Webb Space Telescope, but is more broadly applicable to many kinds of imaging simulations. It is not, however, a substitute for high fidelity optical design software such as […]

Read more

Keep your company’s passwords behind the firewall

TeamVault TeamVault is an open-source web-based shared password manager for behind-the-firewall installation. It requires Python 3.3+ and Postgres (with the unaccent extension). Installation apt-get install libffi-dev libldap2-dev libpq-dev libsasl2-dev python3.6-dev postgresql-contrib pip install teamvault teamvault setup vim /etc/teamvault.conf # note that the teamvault database user will need SUPERUSER privileges # during this step in order to activate the unaccent extension teamvault upgrade teamvault plumbing createsuperuser teamvault run Update pip install –upgrade teamvault teamvault upgrade Development Install Postgres and create a […]

Read more

Python and Julia in harmony

Bringing Python® and Julia together in seamless harmony: Call Python code from Julia and Julia code from Python via a symmetric interface. Simple syntax, so the Python code looks like Python and the Julia code looks like Julia. Intuitive and flexible conversions between Julia and Python: anything can be converted, you are in control. Fast non-copying conversion of numeric arrays in either direction: modify Python arrays (e.g. bytes, array.array, numpy.ndarray) from Julia or Julia arrays from Python. Helpful wrappers: interpret […]

Read more

Python / C++ based particle reaction-diffusion simulator

ReaDDy ReaDDy (Reaction Diffusion Dynamics) is an open source particle based reaction-diffusion simulator that can be configured and run via Python.Currently supported platforms are Mac and Linux. The preferred way of installing the software is by using the conda package manager: # add conda-forge channel conda config –add channels conda-forge # optional: create environment for readdy, switch to that environment conda create -n readdy python=3 source activate readdy # install readdy conda install -c readdy readdy A documentation and a […]

Read more
1 12 13 14 15 16 51