News Recommendation system using Bert4Rec model

Dataset used: Microsoft News Dataset is a huge dataset for newsrecommendation research.It was collected from anonymousbehavior logs of Microsoft News website.The purpose ofMIND is to serve as a benchmark dataset for newsrecommendation and facilitate the research in newsrecommendation and recommender systems area.MIND contains about 160k English news articles and morethan 15 million impression logs generated by 1 millionusers.We randomly sampled 1 million users who had at least5 news click records during 6 weeks from October 12 toNovember 22, 2019. Every […]

Read more

Deep High Dynamic Range Imaging Benchmark

This repository is the pytorch implementation of various High Dynamic Range (HDR) Imaging algorithms. Please find the details below. Maintenance and Contributors @TianhongDai and @WeiLi-THU Requirements pytorch==1.4.0 opencv-python scikit-image==0.17.2 ToDo List adaptive padding add more baselines Supported Algorthms DeepHDR [1] NHDRRNet [2] AHDR [3] DAHDR [4] Instruction download the Kalantari dataset via: [link], and organize the dataset as follows: dataset │ └───Traning │ │ 001 │ │ 002 │ │ 003 │ | … │ └───Test │ 001 │ 002 […]

Read more

Margin Calculator – Personally tailored investment tool

About The Project Are you willing to bet on long-term market growth? Great, this tool calculates how much margin you can take according to your risk-tolerance. (back to top) Built With (back to top) Usage You need to have python and a text editor installed. Edit the file with your numbers Run python margin_calculator.py What does it do? This tool tells you how much you can loan from your broker (e.x. Interactive Brokers), according to your risk tolerance. Assumptions The […]

Read more

Chalice – A tool to facilitate Python based lambda deployment

Chalice is a tool to facilitate Python based lambda deployment. This repo contains the output of my basic exploration of this tool. My specific goal with this tiny project was to examine the output of the terraform code and understand what resources will be created for a helloworld project. I followed this tutorial, although used virtualenv a bit differently. python3 –version python3 -m venv venv38 . venv38/bin/activate As instructed in the tutorial, instead of running chalice deploy, I used chalice […]

Read more

MODI+ Firmware Updater With Python

실행 준비 python3(파이썬3.9 혹은 그 이상의 버전)를 컴퓨터에 설치 python3 -m pip install -r requirements.txt로 의존성 패키지들을 설치 실행 방법 (개발) python3 main.py –debug True로 GUI 프로그램을 실행한다. 실행 방법 (일반) python3 main.py로 GUI 프로그램을 실행한다. 실행파일 생성 python3 bootstrap.py 커맨드를 실행하여 정의한 spec 파일을 기반으로 실행파일을 생성 dist 폴더 내 MODI+ Firmware Updater.exe, MODI+ Firmware Multi Updater.exe 실행파일이 생성된것을 확인 GitHub View Github    

Read more

Twitter Redesign With Django

A project that tests Django and React knowledge through a twitter-like web application that allows users to sign in, create and like tweets and view the profiles of other users Build With Python -v 3.8.10 Django -v 4.0.2 DjangoRestFramework React Bootstrap PostgresQL Live Demo GitHub View Github    

Read more

List Less Than Ten with python

Take a list, say for example this one: a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] and write a program that prints out all the elements of the list that are less than 5. Extras: Instead of printing the elements one by one, make a new list that has all the elements less than 5 from this list in it and print out this new list. Write this in one line of Python. Ask the […]

Read more

Dice Rolling Simulator using Python-random

As the name of the program suggests, we will be imitating a rolling dice. This is one of the interesting python projects and will generate a random number each dice the program runs, and the users can use the dice repeatedly for as long as he wants. When the user rolls the dice, the program will generate a random number between 1 and 6 (as on a standard dice). The number will then be displayed to the user. It will […]

Read more

Number Guessing Game Built With Python

This project is an exciting fun game for beginners to build up. The program generates a random number from 1 to 10, or 1 to 100 any range that is specified and the user must guess the number after a hint from the computer. Every time a user’s guess is wrong they are prompted with more hints to make it easier for them to guess the number but at the cost of reducing the score. The clue any math clue […]

Read more

Car list cli app with python

To run this script git clone https://github.com/ArieTwigt/rdwcli.git Create virtual environment: virtualenv venv –python=python3 Activate virtualenv: venvScriptsactivate (Windows) source venv/bin/activate (OSC) Install required pacakges pip install -r requirements.txt Run the script python main.py GitHub View Github    

Read more
1 248 249 250 251 252 935