Persian text NER,Sentiment,Classification analyzer by using prepared Pytorch model with Django APP

NER, Sentiment, Classification in Persian text by using prepared Pytorch model Usage First of all you need to download the prepared models. Each task has it’s own model. After downloading them, you should put them into related folders. Use docker-compose to setup Django container by bellow command: Now, Django app is ready to use. Three APIs are available: http://localhost:8040/v1/app/ner/ http://localhost:8040/v1/app/sentiment/ http://localhost:8040/v1/app/classification/ You should send POST request with text field in the body. GitHub View Github    

Read more

Neural Network to classify Road Signs based on their images

As research in the field of Self-Driving cars continues, one of the most important challenges faced by scientists and engineers is Computer Vision. Computer Vision allows these cars to develop an understanding of their environment by analyzing digital images. Therefore what we are going to be dealing with is the ability to recognize and distinguish between differetn road signs like for example the STOP signal, SPEED LIMIT signs, yield signs, etc. So, in this project, I have used Tensorflow to […]

Read more

Spams victim’s email by signing up to a newletter repetitevely using email dot trick

Carnage Email Bomber Spams victim’s email by signing up to a newletter repetitevely using email dot trick. Report Bug · Request Feature Features Clean UI (I was bored) HTTP/HTTPS Proxies Required Victim will constantly get emails from the newsletter, perfect way to piss off your victims. Uses the email dot trick to sign up multiple times under the same email. (Making it very difficult to block all the newsletter emails) GitHub View Github    

Read more

SystemSix: An e-Ink desk accessory running on a Raspberry Pi

SystemSix is an e-Ink “desk accessory” running on a Raspberry Pi. It is a bit of nostalgia that can function as a calendar, display the weather, the current phase of the moon or just be generally fun to look at. To be clear, despite how it looks, it is not interactive. It changes every day to display a new “desktop”, will update to show local weather, your calendar events, phase of the moon. But you cannot click on it. It […]

Read more

Python Timer Functions: Three Ways to Monitor Your Code

Look back at how you added the Python timer to the example above. Note that you need at least one variable (tic) to store the state of the Python timer before you download the tutorial. After studying the code a little, you might also note that the three highlighted lines are added only for timing purposes! Now, you’ll create a class that does the same as your manual calls to perf_counter(), but in a more readable and consistent manner. Throughout […]

Read more

Custom 2d Game Engine developed for Machine Learning Testing

This package provides a light weight and fast game engine developed specifically for rapid game design and protyping. This project was created by ColinTF and it is currently in the developement phase and now released have been made. Requirments PyOpenGl The opengl package we use pip install PyOpenGL PyOpenGL_accelerate or download it here and install with pip install [the name .whl file] Grab the python 3.10 version of the non accelerate version for your correct system pyGLFW The package we […]

Read more

A torch implementation of a recursion which turns out to be useful for RNN-T

This project implements a method for faster and more memory-efficient RNN-T loss computation, called pruned rnnt. Note: There is also a fast RNN-T loss implementation in k2 project, which shares the same code here. We make fast_rnnt a stand-alone project in case someone wants only this rnnt loss. How does the pruned-rnnt work ? We first obtain pruning bounds for the RNN-T recursion using a simple joiner network that is just an addition of the encoder and decoder, then we […]

Read more

An auto discord account and token generator. Automatically verifies the phone number

JOIN OUR DISCORD SERVER: https://discord.gg/79auywusZf An auto discord token generator. Auto verifies phone number but not email. Still working on it. put your capmonster key in main.py and your onlinesim.ru key in main.py. capmonster is for hcaptcha solve and onlinesim.ru is for phone verfication. class Settings: capmonster = “capmonster-key” onlinesimru = “” if didn’t install the package, do pip3 install package Each token costs around 0.15$, you can sell it for 0.3$. idc or you can make a botter that […]

Read more
1 192 193 194 195 196 928