Personalized list of today’s articles from ArXiv

Print and/or send to your gmail a personalized list of today’s articles published in ArXiv based on your pre-defined multiple sets of keywords. The script returns: title, abstract and the ArXiv link for each article. Entries are grouped by your pre-defined key. Output example Info This is a very simple code that I wrote for my own personal usage. Some possible future implementations are: Add information to run the code everyday automatically at a certain fixed time using crontab Improve […]

Read more

Toy example of a python script that instantiates and trains a PyTorch neural network on the FashionMNIST dataset with several common and useful featur

This simple_pytorch_example project is a toy example of a python script that instantiates and trains a PyTorch neural network on the FashionMNIST dataset with several common and useful features: Choose between two different neural network architectures Make architectures parametrizable Read input arguments from config file or command line (command line arguments override config file ones) Download FashionMNIST dataset if not already downloaded Monitor training progress on the terminal and/or with TensorBoard logs Accuracy, loss, confusion matrix More details about FashionMNIST […]

Read more

A Raspberry Pi Powered Barcode Reader to load a game on the Mister FPGA using MBC

A Raspberry Pi Powered Barcode Reader to load a game on the Mister FPGA using MBC This is a work in progress and a bit hackery 😅 There are limitations on the MBC side. Some of the computer cores don’t work in loading games up. Such as the commodore computers as the cores have changed the menu layout is slightly different. Currently i have only implemented getting games from out of zip files. You can do direct loading of a […]

Read more

Youtube music with python

Скрипт использует mpv и fzfПауза – spaceВыход – qВыход из скрипта – ctrl+c video, url = parrser.video(url) url – https://invidious.snopyta.org/channel/UC_aEa8K-EOJ3D6gOs7HcyNg url[4] = video[4] from pyfzf.pyfzf import FzfPrompt fzf = FzfPrompt() parserr.youtube(page, search, fzf) or parserr.youtube(2, ‘test search’, fzf)    

Read more

A self-supervised learning framework for audio-visual speech

Learning Audio-Visual Speech Representation by Masked Multimodal Cluster Prediction Robust Self-Supervised Audio-Visual Speech Recognition Introduction AV-HuBERT is a self-supervised representation learning framework for audio-visual speech. It achieves state-of-the-art results in lip reading, ASR and audio-visual speech recognition on the LRS3 audio-visual speech benchmark. If you find AV-HuBERT useful in your research, please use the following BibTeX entry for citation.

Read more

Your custom slash commands Discord bot

Hey, I’m Slashy – your friendly neighborhood custom-command bot! The code for this bot exists because I’m like the open-source community, so feel free to run it yourself, or submit pull requests to improve it. You can get help on using the bot with the /help command in any of the servers Slashy is in, or in Slashy’s DM-s. Invite Click right here to add Slashy to your own server, or just copy https://hey.imkez.com/slashy-invite License This project is licensed under […]

Read more

A simple GUI complex backend Chat Application made using python

Python Chat Application ( Please Star this if you like this or have used this . It’s free 🙂 ) Table of Contents ChatterPatter is a simple GUI based chat application which includes both SERVER AND CLIENT scirpts in same application. Simple in front , complex in back . So complex that even the developer fears going through it again and again.Developed solely on Python. Python Libraries and Modules Used Sockets Threading Tkinter (Tabs , Listbox , Labels , Entry […]

Read more

Measure edit distance based on keyboard layout

Measure edit distance based on keyboard layout. Introduction Default edit distances, such as the Levenshtein distance, don’t differentiate between characters. The distance between two characters is either 0 or 1. This package allows you to measure edit distances by taking into account keyboard layouts. The scope is purposefully limited to alphabetical, numeric, and punctuation keys. That’s because this package is meant to assist in analyzing user inputs — e.g. for spelling correction in a search engine. The goal of this […]

Read more

Machine Translation Weekly 98: XGLM: GPT-3 for 30 languages

By the end of the year, Meta AI (previously Facebook AI) published a pre-print introducing a multilingual version of GPT-3 called XGLM. As its title – Few-shot Learning with Multilingual Language Models – suggests, it explores the few-shot learning capabilities. The main takeaways are: Good news: It is indeed possible to train such a model and it works somehow. Bad news 1: Cross-lingual transfer of few-shot learned tasks is not as good as I would expect. Bad news 2: Huge […]

Read more
1 269 270 271 272 273 915