Tic-Tac-Toe Game in python3 Tkinter

Tic-Tac-Toe Game in python3 Tkinter About: Tic Tac Toe or Noughts and Crosses as called in British is a pencil and paper game for two player. The player who succed in placing three of their marks in a single line either horizontally, vertically or diagonally wins the game. In this Repository I make the game using Tkinter in Python. Here two human are playing against each other and the first one to go gets “X” and the second one gets […]

Read more

A minimal and open-source discord.py boilerplate for kick starting bot projects

A minimal and open-source discord.py boilerplate for kick-starting bot projects. I spend a lot of time developing bots for different communities on discord, and I find myself constantly rewriting the same basic boilerplate for each project. After searching for an existing template with no luck, I decided to write my own that’ll suit any type of application. So this repository includes an all inclusive bare-bones boilerplate for discord.py bot development that you can use as a basic skeleton for your […]

Read more

Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently

This repository is the official implementation for the following paper Analytic-LISTA networks proposed in the following paper: “Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently” by Xiaohan Chen, Jason Zhang and Zhangyang Wang from the VITA Research Group. The code implements the Peek-a-Boo (PaB) algorithm for various convolutional networks and is tested in Linux environment with Python: 3.7.2, PyTorch 1.7.0+. Getting Started Dependency Prerequisites Python 3.7+ PyTorch 1.7.0+ tqdm Data Preparation […]

Read more

Workflow and Template Toolkit for Simulation (WATTS)

WATTS (Workflow and Template Toolkit for Simulation) provides a set of Python classes that can manage simulation workflows for multiple codes where information is exchanged at a coarse level. For each code, input files rely on placeholder values that are filled in based on a set of user-defined parameters. WATTS is being developed with support from Argonne National Laboratory. For any questions, please contact [email protected]. Installation git clone cd watts pip install -U pip pip install . Documentation To build […]

Read more

Shopee Scraper: A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil

A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil. The project was created in python 3 and requires only 3 libraries that may need to be installed (in case you don’t have any of them). They are: requests, date and time. Date and Time are default libraries for Linux and Mac users, but if you’re running Windows, make sure to install them using pip. You can easily install requests […]

Read more

A Python package for searching and getting results with many different search engines

A fast, efficiency python package for searching and getting search results with many different search engines. To install the package, run the following command: python3 -m pip install search Or install from Github: python3 -m pip install git+https://github.com/Neurs1/search.git This package support many different search engines. Provide the best speed with BS4 using lxml. Fix bugs, adapt new features and page design from search engines. Output in dict type, easier to interact with. Search using multiple search engines! import search search.google(“Python”) […]

Read more

Item2Vec Wrapped With Python

Gensim 4.x and sklearn Introduction General informations Methods Description GridSearch and BayesSearch Usage BayesSearch Example Prod2Vec or Item2Vec produces embedding for items in a latent space. The method is capable of inferring item-item relations even when user information is not available. It’s based on NLP model Word2Vec. Click here to know more This project provide a class that encapsulates Item2Vec model (word2vec gensim model) as a sklearn estimator. It allows the simple and efficient use of the Item2Vec model by […]

Read more
1 14 15 16 17 18 49