“Split List Python Prozent” Code-Antworten

Split List Python Prozent

files = [1,2,3,4,5,6,7,8,9,10]
training = files[:int(len(files)*0.8)] #[1, 2, 3, 4, 5, 6, 7, 8]
validation = files[-int(len(files)*0.1):] #[10]
testing = files[-int(len(files)*0.1):] #[10]
Sore Stork

Split List Python Prozent

train, validate, test = np.split(files, [int(len(files)*0.8), int(len(files)*0.9)])
Sore Stork

Ähnliche Antworten wie “Split List Python Prozent”

Fragen ähnlich wie “Split List Python Prozent”

Weitere verwandte Antworten zu “Split List Python Prozent” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen