python - 为什么 train_test_split 需要很长时间才能运行?

标签 python deep-learning conv-neural-network google-colaboratory

我正在使用 Google colab,并且正在尝试训练卷积神经网络。用于拆分大约 11,500 张图像的数据集,每个数据的形状为 63x63x63。我使用了 sklearn 中的 train_test_split

test_split = 0.1
random_state = 42
X_train, X_test, y_train, y_test = train_test_split(triplets, df.label, test_size = test_split, random_state = random_state)

每次我的运行时断开连接时,我都需要运行它才能继续。但是,仅此命令就需要将近 10 分钟(或可能更多)才能运行。 notebook 中的所有其他命令都运行得非常快(可能在几秒钟或更短的时间内)。我不太确定问题出在哪里;我尝试将运行时更改为 GPU,我的互联网连接似乎相当稳定。可能是什么问题?

最佳答案

为什么要花这么多时间?

您的数据形状是 11500x63x63x63。通常需要这么长时间,因为数据形状很大。

解释: 由于数据形状为 11500x63x63x63,因此数据中大约有 3x10^9 个内存位置(实际值为 2,875,540,500)。一般一台机器每秒可以执行10^7~10^8条指令。由于python比较慢,我认为google-colab每秒可以执行10^7条指令,那么,

train_test_split 所需的最短时间 = 3x10^9/10^7 = 300 秒 = 5 分钟

但是train_test_split的实际时间复杂度函数几乎接近于O(n),但是由于庞大的数据操作,该函数基于庞大的数据传递和检索操作导致瓶颈。这导致您的脚本的时间消耗几乎翻倍。

如何解决?

一个简单的解决方案是传递要素数据集的索引,而不是直接传递要素数据集(在本例中,要素数据集是triplets)。这将减少在 train_test_split 函数中复制返回的训练和测试特征所需的额外时间。这可能会提高性能,具体取决于您当前使用的数据类型。

为了进一步解释我在说什么,我添加了一个简短的代码,

# Building a index array of the input feature
X_index = np.arange(0, 11500)

# Passing index array instead of the big feature matrix
X_train, X_test, y_train, y_test = train_test_split(X_index, df.label, test_size=0.1, random_state=42)

# Extracting the feature matrix using splitted index matrix
X_train = triplets[X_train]
X_test = triplets[X_test]

在上面的代码中,我传递了输入特征的索引,并根据 train_test_split 函数对其进行拆分。此外,我正在手动提取训练和测试数据集,以降低返回大矩阵的时间复杂度。

估计的时间改进取决于您当前使用的数据类型。为了进一步加强我的回答,我添加了一个使用 NumPy 矩阵和在 google-colab 上测试的数据类型的基准。基准代码和输出如下所示。但是,在某些情况下,它并没有像基准测试中那样改善太多。

代码:

import timeit
import numpy as np
from sklearn.model_selection import train_test_split

def benchmark(dtypes):
    for dtype in dtypes:
        print('Benchmark for dtype', dtype, end='\n'+'-'*40+'\n')
        X = np.ones((5000, 63, 63, 63), dtype=dtype)
        y = np.ones((5000, 1), dtype=dtype)
        X_index = np.arange(0, 5000)

        start_time = timeit.default_timer()
        X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.1, random_state=42)
        print(f'Time elapsed: {timeit.default_timer()-start_time:.3f}')

        start_time = timeit.default_timer()
        X_train, X_test, y_train, y_test = train_test_split(X_index, y, test_size=0.1, random_state=42)

        X_train = X[X_train]
        X_test = X[X_test]
        print(f'Time elapsed with indexing: {timeit.default_timer()-start_time:.3f}')
        print()

benchmark([np.int8, np.int16, np.int32, np.int64, np.float16, np.float32, np.float64])

输出:

Benchmark for dtype <class 'numpy.int8'>
----------------------------------------
Time elapsed: 0.473
Time elapsed with indexing: 0.304

Benchmark for dtype <class 'numpy.int16'>
----------------------------------------
Time elapsed: 0.895
Time elapsed with indexing: 0.604

Benchmark for dtype <class 'numpy.int32'>
----------------------------------------
Time elapsed: 1.792
Time elapsed with indexing: 1.182

Benchmark for dtype <class 'numpy.int64'>
----------------------------------------
Time elapsed: 2.493
Time elapsed with indexing: 2.398

Benchmark for dtype <class 'numpy.float16'>
----------------------------------------
Time elapsed: 0.730
Time elapsed with indexing: 0.738

Benchmark for dtype <class 'numpy.float32'>
----------------------------------------
Time elapsed: 1.904
Time elapsed with indexing: 1.400
    
Benchmark for dtype <class 'numpy.float64'>
----------------------------------------
Time elapsed: 5.166
Time elapsed with indexing: 3.076

关于python - 为什么 train_test_split 需要很长时间才能运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62968187/

相关文章:

python - sqlalchemy手动创建数据库表

machine-learning - 该神经网络有多少个隐藏层和总层数?

python - 使用SMOTE和ADASYN平衡图像数据集

python - 如何为 ConvLSTM2D 模型 reshape 多元时间序列数据

python - 多次显示字符串

python - 如何在 boost python 中公开采用可变参数的 C++ 函数

python - 如何在 Python 中访问父类的变量?

python - Python 中的深度学习 - 随机梯度下降 - 分解代码

python - 2d 张量列表到一个 3d 张量

neural-network - 根据 caffe 中的 "badness"缩放损失值