Course Recommendations for Introductory Machine Learning

Before you jump into deep learning, I would strongly advise you to do a few introductory machine learning courses to get up to speed with fundamental concepts like clustering, regression, evaluation metrics, etc.  Here is a thread including a few recent courses you can explore: This is a crosspost of a Twitter thread I published earlier this week. Elements of AI by University of Helsinki Note: I have taken many machine learning courses online. I do some courses for fun […]

Read more

My Recommendations for Getting Started with NLP

I have been studying natural language processing (NLP) since 2013, back when manual feature engineering was very popular in the world of machine learning. We have come a long way since then. I actually specialized in information retrieval and machine learning techniques for my Ph.D., particularly how they apply to social computing and computational linguistics, while at the same time developing approaches for efficient information extraction from large-scale text-based data. I am fortunate to have experience with classical machine learning […]

Read more

YKKDetector For Python

OpenCVを利用した機械学習データをもとに、VRChatのスクリーンショットなどからYKKさん(もとい「幽狐族のお姉様」)を検出できるソフトウェアです。 マニュアル こちらから実行環境のセットアップから解説する詳細なマニュアルをご覧いただけます。 ライセンス Pythonバージョンについて Python 3.8未満のバージョンは(2.xとかでない限りおそらく動くと思いますが)サポートしておりません。 サードパーティのライブラリに関する表記 本ソフトウェアには が使用されております。 謝辞 YKKさんのサンプルデータ収集にご協力いただいた皆さん、並びに大量の画像データを提供してくださったseptem47さんにこの場を借りて感謝申し上げます。 GitHub View Github    

Read more

Implementation for Evolution of Strategies for Cooperation

Implementation for Evolution of Strategies for Cooperation Dependencies You will need a python3 (>= 3.8) environment to run the code. Before you start, please run this command to install the dependencies: pip3 install -r ./requirements.txt How to run the demo We made a Web application to give you a quick impression of our project. In the moraliser directory, run: You will see a grid where nodes with different colors are randomly placed, which indicates agents of different types. Click on […]

Read more

Generates Windows 95 and 95 OEM keys using the modulus 7 check algorithm

windowskeygen.py – Generates Windows 95 and 95 OEM keys using the modulus 7 check algorithm Just download and drop in the directory you are using for the script you’re currently writing, or drop it in your python module directory to call it from anywhere.Then just import the function as one does normally. keygen95() – Generates a retail 95 key that works on all 95 era software, not just the OS. keygen95oem() – Generates an OEM 95 key. Some example uses: […]

Read more

Flappy Bird With python and pygame

Tecnologias usadas Requisitos para inicializar o jogo: Python faça o download em: https://www.python.org/Pygame faça o download em: https://www.pygame.org Pode ser usado as versões de Python apartir do suporte do Pygame Para inicializar o jogo, deve-se usar o comando no terminal “python .FlappyBird.py” GitHub View Github    

Read more

Object Detection with YOLOv3

Bu projede YOLOv3-608 modeli kullanılmıştır. Requirements Documentation Yolo ile ilgili detaylı bilgilere bu link üzerinden erişebilirsiniz. Yolov3 modelinin import edilmesi için aşağıdaki dosyalar indirilerek YOLO/Model/ klasörünün içine eklenmelidir. YOLOv3-608 için cfg dosya linki YOLOv3-608 için weights dosya linki OpenCV ve Numpy kütüphanesi kurulumu için: $ pip install opencv-python $ pip install numpy Örnek görüntü ve çıktısı Görüntü Yolov3 ile Çıktı GitHub View    

Read more

This GUI app was created to show the detailed information about the weather in any city selected by user

Content Brief description This GUI app was created to show the detailed information about the weather in any city selected by user. Tools Language: PythonAPI: OpenWeather Libraries: Features Settings Favorite cities Default city (it’s displayed right when the app is opened) App can be minimized to tray Hotkeys The search works for both Latin and Cyrillic alphabet Hotkeys Enter: search Shift + F1: favorites & back Shift + F2: settings & back How it works The app    

Read more
1 333 334 335 336 337 928