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

Streamlit app for pump it up project

This is a basic app that performs two functions First, it allows for the easy mapping of the data on the functionality of water pumps to allow hypothesis formation Second, it gives access to a trained classification model that will predict whether a hypothetical pump is function from a set of input variables A full account of the creation of the model can be found at https://github.com/nonlocal-lia/pump_it_up_competition A working copy of the app can be accessed at https://share.streamlit.io/nonlocal-lia/pump_streamlit/main/front_end.py GitHub View […]

Read more

ABScanner – Python script that looks for open ports/targets

Python script that looks for open ports/targets Using You must specify a target or a network with the subnet mask Type of scans: If you just put the target, the scanner script with all types of scans: ./scanner.py 192.168.0.10 ./scanner.py 192.168.0.10/24 To choose a type of scan, you have to specify it (it doesn’t care about the case); ./scanner.py syn 192.168.0.10 ./scanner.py ICMP 192.168.0.10/24 ./scanner.py arp 10.10.10.10/16 ./scanner.py UDP 192.168.0.254 GitHub View Github    

Read more

Blender addon to quickly view image nodes in Blender’s image viewer

A Blender addon to quickly view images from image nodes in Blender’s image viewer. Support Created for Blender 3.0.0 Installing Download this addon as a zip Inside Blender Preferences > Addons, click Install from File Select the zip you downloaded, and install Using Right click image node in node editor > View Image Node The image will show up in the UV Editor or Image Editor on your screen. GitHub View Github    

Read more

A project of the TGBBZ1-SB which serves as the basis for the following projects of the school

Ein Projekt des TGBBZ1-SB welches als Grundlage für folgende Projekte der Schule dient. Wie du deinen Code Pusht: Bitte beachte das Branching ConceptFeaturebranchXY -> Test -> main Bitte nicht direkt in main Pushen!!Lege dir einen Branch an für das Feature, dass du gerade entwicklest und pushe ihn nachdem du fertig bist in den test Branch.Der Test Branch wird dan nach Abnahme vom Projektleiter in den Main Branch gepusht Setup Backend: Checke das Projekt aus in deiner IDE Stelle sicher das […]

Read more

Flickr Downloader – A tiny Python tool can download all public photos of a user, even though they’re disabled

This tiny Python tool can download all public photos of a user, even though they’re disabled. Prerequisite We need Python Requests to scrape, BeautifulSoup to download and FlickrAPI to get photo IDs. pip install requests pip install html5lib pip install bs4 pip install flickrapi Usage There is only one feature, just run then enter the user ID: You can get the user ID from profile URLs, example 12345678N00 from: https://www.flickr.com/people/12345678N00/… https://www.flickr.com/photos/12345678N00/… This tool will try to download the largest size […]

Read more
1 306 307 308 309 310 985