3x+1 recreated in Python

3x+1 recreated in Python If a number is odd it is multiplied by 3 and 1 is added to the product. If a number is even it is divided by 2. These rules are applied directly to any positive natural number. All numbers till 2 to the power 62 have been found and all end up at 1. Since 1 is odd multiplying by 3 and adding 1 becomes 4, dividing by 2 gives 2, and dividing again gives 1, […]

Read more

Forecasting for knowable future events using Bayesian informative priors

judgyprophet is a Bayesian forecasting algorithm based on Prophet, that enables forecasting while using information known by the business about future events. The aim is to enable users to perform forecasting with judgmental adjustment, in a way that is mathematically as sound as possible. Some events will have a big effect on your timeseries. Some of which you are aware of ahead of time. For example: An existing product entering a new market. A price change to a product. These […]

Read more

Sorti-Py – A CLI tool that sorts the current folder you’re in

Sorti-Py is a CLI tool that sorts the current folder you’re in. It sorts all files into their respective folders, for example, it takes all .pdf files in your current directory, and puts them in a pdf folder. It works for all extensions and will make organizing messy folders a lot easier. cd into the directory you wish sorted type “sortipy” clone this repository cd into sorti-py type “sudo mv sortipy /usr/bin” NOTE: The reason you need sudo privileges is […]

Read more

Versatile Multi-Modal Pre-Training for Human-Centric Perception

1S-Lab, Nanyang Technological University  2SenseTime Research  3Shanghai AI Laboratory Accepted to CVPR 2022 This repository contains the official implementation of Versatile Multi-Modal Pre-Training for Human-Centric Perception. For brevity, we name our method HCMoCo. arXiv • Project Page • Dataset Citation If you find our work useful for your research, please consider citing the paper: Updates [03/2022] Code release! [03/2022] HCMoCo is accepted to CVPR 2022🥳! Installation We recommend using conda to manage the python environment. The commands below are provided […]

Read more

Novel Class Discovery in Semantic Segmentation, CVPR 2022

This repository contains the official implementation of our paper: Novel Class Discovery in Semantic Segmentation, CVPR 2022 Yuyang Zhao, Zhun Zhong, Nicu Sebe, Gim Hee Lee Paper: ArXiv Project Page: Website Abstract: We introduce a new setting of Novel Class Discovery in Semantic Segmentation (NCDSS), which aims at segmenting unlabeled images containing new classes given prior knowledge from a labeled set of disjoint classes. In contrast to existing approaches that look at novel class discovery in image classification, we focus […]

Read more

A repository for a universal I/O spec for TAMP, along with scripts to convert from popular specs to our spec

A repository for a universal I/O spec for TAMP, along with scripts to convert from popular specs to our spec Installation Dependencies This repository requires Python 3.8+. We recommend you create a conda env or virtual env with an appropriate Python version before installing the other dependencies. If you are creating a virtual environment within the project directory, then you might want to call it one of .env, env, .venv, venv as the code checks have been configured to exclude […]

Read more

Gesture Volume Control With Python

In this project I am going to learn how to use Gesture Control to change the volume of a computer. I first look into hand tracking and then I will use the hand landmarks to find gesture of my hand to change the volume. Features Can track your hand in real-time Can change your computer’s volume based on your hand activity How to install Clone this repository on your computer https://github.com/paveldat/gesture_volume_control.git Install all the requirements run libraries.bat Run the program […]

Read more
1 199 200 201 202 203 941