gpt4 book ai didi

java - 自定义类来保存感知器数据 - 可能未正确填充

转载 作者:行者123 更新时间:2023-11-30 08:07:33 27 4
gpt4 key购买 nike

我有以下输入

 0 0 0 0 0  0 2
0 0 0 0 1 0 2
0 0 0 1 0 0 2
0 0 0 1 1 0 2

这些是用于演示的玩具值

这些是为了给感知器提供两个输出,即选项卡后面的两个标签。

我创建了一个类来保存一组输入和一个标签,所以我最终设想了两个数据结构,每个神经元一个,形式如下:

 0 0 0 0 0  0
0 0 0 0 1 0
0 0 0 1 0 0
0 0 0 1 1 0

 0 0 0 0 0  2
0 0 0 0 1 2
0 0 0 1 0 2
0 0 0 1 1 2

这个类看起来像这样:

class Group {

public String key;
public String[] value;

public String getKey() {
return key;
}

public String[] getValue() {
return value;
}

Group(String[] splited_inputs, String k)
{
this.key = k;
this.value = splited_inputs;
}

@Override
public String toString() {
return this.key + " " + this.value;
}
}

我通过以这种方式从文件中读取输入来填充类:

      ArrayList<Group> list = new ArrayList<>();


/**************
* READ INPUT *
**************/
BufferedReader reader = new BufferedReader(new FileReader("../PA-A-train.dat"));

String line;//new variable
while ((line = reader.readLine()) != null) //read the line and compare
{
/*********************************************************************
* GET THE LINE, SPLIT ON THE TAB FOR LABEL VS. INPUT IDENTIFICATION *
*********************************************************************/
String[] label_detector = line.split("\t"); //split

/*****************************
* GET THE INDIVIDUAL INPUTS *
*****************************/
String inputs = label_detector[label_detector.length - 2];
String[] splited_inputs = inputs.split("\\s+");

splited_inputs = Arrays.stream(splited_inputs) //Remove null values
.filter(s -> (s != null && s.length() > 0))
.toArray(String[]::new);

//for this training datum, how many features does it have
int number_of_inputs = splited_inputs.length; //5

/************************************
* GET THE LABEL (2nd LAYER OUTPUT) *
************************************/
String trueLabel = label_detector[label_detector.length - 1];
//System.out.println("this is the corresponding label: " + trueLabel);
String[] splited_labels = trueLabel.split("\\s+");

int number_of_labels = splited_labels.length;


list.add(new Group(splited_inputs, splited_labels[0]));



}
reader.close();

for (Group p : list)
System.out.println( "check it out: " + p.toString() );


}

但是当我尝试打印它时,输出如下所示:

check it out: 0 [Ljava.lang.String;@87aac27
check it out: 0 [Ljava.lang.String;@3e3abc88
check it out: 0 [Ljava.lang.String;@6ce253f1
check it out: 0 [Ljava.lang.String;@53d8d10a
check it out: 0 [Ljava.lang.String;@e9e54c2
check it out: 0 [Ljava.lang.String;@65ab7765
check it out: 0 [Ljava.lang.String;@1b28cdfa
check it out: 1 [Ljava.lang.String;@eed1f14
check it out: 0 [Ljava.lang.String;@7229724f
check it out: 0 [Ljava.lang.String;@4c873330

所以它打印的是内存中的位置,而不是输入数组。

这是因为我最初只是将位置插入内存,还是因为我没有遍历它以正确打印它?

最佳答案

在 java 中不能直接调用数组的 toString() 来打印内容。

但是,您可以使用 Arrays.toString(Object[] arr)

@Override
public String toString() {
return this.key + " " + Arrays.toString(this.value);
}

关于java - 自定义类来保存感知器数据 - 可能未正确填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33620304/

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