Skip to content

Instantly share code, notes, and snippets.

@Desjajja
Desjajja / split_dataset.py
Last active December 20, 2022 06:51
Split Dataset in Paddle #DeepLearning
import numpy as np
from sklearn.model_selection import train_test_split
# load filepath to list X, labels to list y
# test_size appoints the ratio(0,1), random_state gives the random seed
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.33, random_state=42)
# define dataset class, pass two lists in
@Desjajja
Desjajja / notion_database
Last active April 29, 2022 14:38
Notion Formula to Check Whether the Current Date Expires #Notion
if(ceil((dateBetween(end(prop("Date")), now(), "hours") + hour(now())) / 24) < 0, "🔒️ 🚧Expired", #more branches)