An open-source tool for writers build with python

Manuskript Manuskript is an open-source tool for writers. Manuskript runs on GNU/Linux, Mac OS X, and Windows. Features Manuskript provides a rich environment to help writers create theirfirst draft and then further refine and edit their masterpiece.With Manuskript you can: GitHub https://github.com/olivierkes/manuskript    

Read more

Backend for the Vaccine Hunters Finder tool with python

VaxFinder – Backend The backend for the Vaccine Hunters Finder tool. Development Prerequisites Python 3.8 Poetry: A tool for dependency management and packaging. Access to VaxFinder’s Microsoft SQL Server database hosted on Azure. Please message Patrick or Evan for access. Installation Install the unixODBC library if you are on a linux environment as it’s required for pyodbc (hence aioodbc). You can install it using your package manager, for example: $ sudo apt-get install unixodbc $ sudo apt-get install unixodbc-dev Install […]

Read more

Creates fake JSON files from a JSON schema

jsf Use jsf along with fake data generators to provide consistent and meaningful fake data for your system. Use jsf along with fake data generators to provide consistent and meaningful fake data for your system. Main Features Provides out of the box data generation from any JSON schema πŸ“¦ Extendable custom data providers using any lambda functions πŸ”— Multi level state for dependant data (eg multiple objects sharing value, such as children with same surname) πŸ€“ Inbuilt validation of fake […]

Read more

A command-line program to download media for python

onlyfans-scraper A command-line program to download media, like and unlike posts, and more from creators on OnlyFans. Installation You can install this program by entering the following in your terminal: pip install onlyfans-scraper If you’re on macOS/Linux, then do this instead: pip3 install onlyfans-scraper Setup Before you can fully use it, you need to fill out some fields in a auth.json file. This file will be created for you when you run the program for the first time. These are […]

Read more

Using sleep() to Code a Python Uptime Bot

Have you ever needed to make your Python program wait for something? You might use a Python sleep() call to simulate a delay in your program. Perhaps you need to wait for a file to upload or download, or for a graphic to load or be drawn to the screen. You might even need to pause between calls to a web API, or between queries to a database. Adding Python sleep() calls to your program can help in each of […]

Read more

S2, A next generation data science toolbox

Β  We have created a language that is faster than python in every way, works with the entire Java ecosystem (such as the Spring framework, Eclipse and many more) and can be deployed into embedded devices seamlessly, allowing you to collect and process data from pretty much any device you want even without internet. Our language comes built-in with mathematical libraries necessary for any data scientist, from basic math like Linear Algebra and Statistics to Digital Signal Processing and Time […]

Read more

CAT-Net: Learning Canonical Appearance Transformations

CAT-Net Code to accompany our paper “How to Train a CAT: Learning Canonical Appearance Transformations for Direct Visual Localization Under Illumination Change”. Dependencies numpy matpotlib pytorch + torchvision (1.2) Pillow progress (for progress bars in train/val/test loops) tensorboard + tensorboardX (for visualization) pyslam + liegroups (optional, for running odometry/localization experiments) OpenCV (optional, for running odometry/localization experiments) Training the CAT Download the ETHL dataset from here or the Virtual KITTI dataset from here ETHL only: rename ethl1/2 to ethl1/2_static. ETHL only: […]

Read more

Minimal PyTorch implementation of Generative Latent Optimization

Minimal PyTorch implementation of Generative Latent Optimization This is a reimplementation of the paper Piotr Bojanowski, Armand Joulin, David Lopez-Paz, Arthur Szlam:Optimizing the Latent Space of Generative Networks I’m not one of the authors. I just reimplemented parts of the paper in PyTorch for learning about PyTorch and generative models. Also, I liked the idea in the paper and was surprised that the approach actually works. Implementation of the Laplacian pyramid L1 loss is inspired by https://github.com/mtyka/laploss. DCGAN network architecture […]

Read more

Learning to Compare: Relation Network for Few-Shot Learning

Pytorch Implementation for Paper: Learning to Compare: Relation Network for Few-Shot Learning download mini-imagenet and make it looks like: mini-imagenet/ β”œβ”€β”€ images β”œβ”€β”€ n0210891500001298.jpg β”œβ”€β”€ n0287152500001298.jpg … β”œβ”€β”€ test.csv β”œβ”€β”€ val.csv └── train.csv LearningToCompare-Pytorch/ β”œβ”€β”€ compare.py β”œβ”€β”€ MiniImagenet.py β”œβ”€β”€ Readme.md β”œβ”€β”€ repnet.py β”œβ”€β”€ train.py └── utils.py python train.py current code support multi-gpus on single machine training, to disable it and train on single machine,just set device_ids=[0] and downsize batch size according to your gpu memory capacity.make sure ckpt directory exists, […]

Read more

PoincarΓ© Embeddings for Learning Hierarchical Representations

PoincarΓ© Embeddings for Learning Hierarchical Representations PyTorch implementation of PoincarΓ© Embeddings for Learning Hierarchical Representations Installation Simply clone this repository via git clone https://github.com/facebookresearch/poincare-embeddings.git cd poincare-embeddings conda env create -f environment.yml source activate poincare python setup.py build_ext –inplace Example: Embedding WordNet Mammals To embed the transitive closure of the WordNet mammals subtree, first generate the data via cd wordnet python transitive_closure.py This will generate the transitive closure of the full noun hierarchy as well as of the mammals subtree of […]

Read more
1 547 548 549 550 551 941