【发布时间】:2016-10-31 10:53:03
【问题描述】:
我正在用 Objective-C 开发一个人工神经网络,所以我写了一些矩阵向量算术的方法。例如,下面是外积计算的代码。代码工作正常并返回所需的结果,但是在将方法返回的NSMutableArray 对象与单元测试中创建的对象进行比较时,我的单元测试失败了。我已经迷失了几天了。有谁知道为什么XCTAssertEqualObjects() 会失败,尽管对象看起来相同?
这是在 MLNNeuralNet.m 中返回 2 个向量(NSArrays)的外积的相关代码:
-(NSMutableArray *)outerProduct:(NSArray *)matrix1 by:(NSArray *)matrix2 {
/*Tensor Product of 2 vectors treated as column and row matrices, respectively*/
/*Example: if matrix1 is @[2, 4, 6] and matrix2 @[3, 4, 5], then calculation is:
[2 * 3, 2 * 4, 2 * 5], [4 * 3, etc...]
and result is:
@[@[6, 8, 10], @[12, 16, 20], @[18, 24, 30]]
*/
NSMutableArray *result = [[NSMutableArray alloc] init];
for (int i = 0; i < [matrix1 count]; i++) {
NSMutableArray *tempArray = [[NSMutableArray alloc] init];
for (int j = 0; j < [matrix2 count]; j++) {
double product = [[matrix1 objectAtIndex:i] doubleValue] * [[matrix2 objectAtIndex:j] doubleValue];
[tempArray addObject:@(product)];
}
[result addObject:tempArray];
}
return result;
}
这是单元测试的代码:
@interface MLNNeuralNetTests : XCTestCase
@property (strong, nonatomic) MLNNeuralNet *neuralNet;
@end
@implementation MLNNeuralNetTests
- (void)setUp {
[super setUp];
_neuralNet = [[MLNNeuralNet alloc] init];
}
-(void)testOuterProduct {
NSMutableArray *matrix1 = [[NSMutableArray alloc] initWithArray:@[@(1.0), @(2.0), @(3.0)]];
NSMutableArray *matrix2 = [[NSMutableArray alloc] initWithArray:@[@(4.2), @(5.2), @(6.2)]];
NSMutableArray *layer1 = [[NSMutableArray alloc] initWithArray:@[@(4.2), @(5.2), @(6.2)]];
NSMutableArray *layer2 = [[NSMutableArray alloc] initWithArray:@[@(8.4), @(10.4), @(12.4)]];
NSMutableArray *layer3 = [[NSMutableArray alloc] initWithArray:@[@(12.6), @(15.6), @(18.6)]];
NSMutableArray *correctMatrix = [[NSMutableArray alloc]
initWithArray:@[layer1, layer2, layer3]];
NSMutableArray *testMatrix = [self.neuralNet outerProduct:matrix1 by:matrix2];
XCTAssertEqualObjects(correctMatrix, testMatrix, @"Matrix outer product failed");
}
这是我得到的错误:
我认为这可能是由于我在单元测试版本中创建了 NSNumber 文字,例如 @(4.2) etc...
所以我尝试先创建doubles,然后像这样包装NSNumber:
double number1 = 4.2;
NSMutableArray *layer1 = [[NSMutableArray alloc] initWithArray:@[@(number1), etc...
但这也没有用。
我错过了什么吗?
当我尝试在类似测试中测试对象相等性时,我没有遇到任何问题。例如,以下测试不会失败:
-(void)testMultiplyVectorElements {
NSArray *vector1 = @[@(1.0), @(2.0), @(3.0), @(4.0)];
NSArray *vector2 = @[@(5.2), @(6.2), @(7.2), @(8.2)];
NSMutableArray *correctVector = [[NSMutableArray alloc] initWithArray:@[@(5.2), @(12.4), @(21.6), @(32.8)]];
NSMutableArray *testVector = [self.neuralNet multiplyVectorElements:vector1 by:vector2];
XCTAssertEqualObjects(correctVector, testVector, @"Vector element-wise multiplication failed.");
}
【问题讨论】:
标签: objective-c cocoa-touch nsmutablearray xctest nsnumber