gpt4 book ai didi

numpy - 如何可视化或绘制多维张量?

转载 作者:行者123 更新时间:2023-12-03 22:17:34 25 4
gpt4 key购买 nike

我想知道这里是否有人尝试过在 numpy.xml 中可视化多维张量。如果是这样,你能和我分享我如何去做吗?我正在考虑将其简化为 2D 可视化。

我已经包含了一些示例输出。它的结构很奇怪,有省略号“...”,并且有 4D 张量布局 [[[[ ]内容在这里 ]]]]

样本数据:

[[[[ -9.37186633e-05  -9.89684777e-05  -8.97786958e-05 ...,
-1.08984910e-04 -1.07056971e-04 -8.68257193e-05]
[[ -9.61350961e-05 -8.75062251e-05 -9.39425736e-05 ...,
-1.17737654e-04 -9.66376538e-05 -8.78447026e-05]
[ -1.06558400e-04 -9.04031331e-05 -1.04479543e-04 ...,
-1.02786013e-04 -1.07974607e-04 -1.07524407e-04]]
[[[ -1.09648725e-04 -1.01073667e-04 -9.39013553e-05 ...,
-8.94383265e-05 -9.06078858e-05 -9.83356076e-05]
[ -9.76310257e-05 -1.04029998e-04 -1.01905476e-04 ...,
-9.50643880e-05 -8.29156561e-05 -9.75912480e-05]]]
[ -1.12038200e-04 -1.00154917e-04 -9.00980813e-05 ...,
-1.10244124e-04 -1.16597665e-04 -1.10604939e-04]]]]

最佳答案

  • 为了绘制高维数据,有一种称为 T-SNE 的技术
  • T-SNE 由 tensorflow 作为 tesnorboard 功能提供
  • 您可以只提供张量作为嵌入并运行张量板
  • 您可以在 3D 或 2D 中可视化高维数据
  • 这是使用 Tensor-board 进行数据可视化的链接:https://github.com/jayshah19949596/Tensorboard-Visualization-Freezing-Graph
  • 你的代码应该是这样的:
      tensor_x = tf.Variable(mnist.test.images, name='images')
    config = projector.ProjectorConfig()
    # One can add multiple embeddings.
    embedding = config.embeddings.add()
    embedding.tensor_name = tensor_x.name
    # Link this tensor to its metadata file (e.g. labels).
    embedding.metadata_path = metadata
    # Saves a config file that TensorBoard will read during startup.
    projector.visualize_embeddings(tf.summary.FileWriter(logs_path), config)
  • 张量板可视化:
    enter image description here
  • 可以使用 scikit learn 的 TSNE 绘制高维数据
  • 下面是使用 scikit learn 的 TSNE 的示例代码
      # x is my data which is a nd-array
    # You have to convert your tensor to nd-array before using scikit-learn's tsne
    # Convert your tensor to x =====> x = tf.Session().run(tensor_x)
    standard = StandardScaler()
    x_std = standard.fit_transform(x)
    plt.figure()

    label_encoder = LabelEncoder()
    y = label_encoder.fit_transform(y)

    tsne = TSNE(n_components=2, random_state=0) # n_components means you mean to plot your dimensional data to 2D
    x_test_2d = tsne.fit_transform(x_std)

    print()

    markers = ('s', 'd', 'o', '^', 'v', '8', 's', 'p', "_", '2')
    color_map = {0: 'red', 1: 'blue', 2: 'lightgreen', 3: 'purple', 4: 'cyan', 5: 'black', 6: 'yellow', 7: 'magenta',
    8: 'plum', 9: 'yellowgreen'}
    for idx, cl in enumerate(np.unique(y)):

    plt.scatter(x=x_test_2d[y == cl, 0], y=x_test_2d[y == cl, 1], c=color_map[idx], marker=markers[idx],
    label=cl)
    plt.xlabel('X in t-SNE')
    plt.ylabel('Y in t-SNE')
    plt.legend(loc='upper left')
    plt.title('t-SNE visualization of test data')
    plt.show()
  • ScikitLearn 的 TSNE 结果:
    enter image description here
  • 您也可以使用 PCA用于将高维数据绘制为 2D
  • 这是 PCA 的实现.
  • Scikit 学习 PCA:https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.PCA.html
  • 关于numpy - 如何可视化或绘制多维张量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49184548/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com