List of machine learning datasets and competitions.
- https://www.drivendata.org/competitions/
- UCI ML repository
- Kaggle
- Medical dataset collection: https://arxiv.org/pdf/2106.12864.pdf
import multiprocessing | |
import time | |
import pdb | |
def process_data_slow(data): | |
time.sleep(1.5) | |
new_list = [] | |
for elem in data: | |
new_list.append(elem ** 5) |
""" | |
File: auto_backup.py (prototype) | |
------------------ | |
Simple python script that packages the current working directory | |
into a folder and stores a copy of it in "../backups" one level up. | |
Name is based on timestamp | |
To-do: make this a function with params(backup folder, new folder name, time zone) | |
and package it up on pip for easy use. Also make the date string human readable (e.g. july-27...) | |
""" |
matplotlib | |
torchvision | |
numpy | |
tqdm | |
opencv_python | |
torch | |
tensorflow | |
Pillow | |
notebook | |
jupyter |
# source:http://reocities.com/SiliconValley/heights/7052/opcode.txt | |
From: [email protected] (Mark Hopkins) | |
Newsgroups: alt.lang.asm | |
Subject: A Summary of the 80486 Opcodes and Instructions | |
(1) The 80x86 is an Octal Machine | |
This is a follow-up and revision of an article posted in alt.lang.asm on | |
7-5-92 concerning the 80x86 instruction encoding. | |
The only proper way to understand 80x86 coding is to realize that ALL 80x86 |
List of machine learning datasets and competitions.