Skip to content

Commit 925114d

Browse files
Add headers to the files
2 parents e7ab82e + fd38187 commit 925114d

21 files changed

+61
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Algorithms that shine in this setting in terms of both model size and compute, n
1717
- **EMI-RNN**: Training routine to recover the critical signature from time series data for faster and accurate RNN predictions.
1818
- **Shallow RNN**: A meta-architecture for training RNNs that can be applied to streaming data.
1919
- **FastRNN & FastGRNN - FastCells**: **F**ast, **A**ccurate, **S**table and **T**iny (**G**ated) RNN cells.
20+
- **Conv1D**: 1-D regular and low-rank convolution architectures for time-series data.
2021
- **DROCC**: **D**eep **R**obust **O**ne-**C**lass **C**lassfiication for training robust anomaly detectors.
2122

2223
These algorithms can train models for classical supervised learning problems

c_reference/tests/conv1d/avg_pool/avg_io.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#define I_T 1000
25
#define O_T 994
36
#define I_F 80

c_reference/tests/conv1d/avg_pool/test_avg_pool.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#include<stdio.h>
25
#include<stdlib.h>
36

c_reference/tests/conv1d/conv1d_depthwise/conv_param_depth.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#define I_T 1000
25
#define O_T 996
36
#define I_F 80

c_reference/tests/conv1d/conv1d_depthwise/test_conv1d_depth.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#include<stdio.h>
25
#include<stdlib.h>
36

c_reference/tests/conv1d/conv1d_lr/conv_param_lr.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#define I_T 1000
25
#define O_T 996
36
#define I_F 80

c_reference/tests/conv1d/conv1d_lr/test_conv1d_lr.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#include<stdio.h>
25
#include<stdlib.h>
36

c_reference/tests/conv1d/conv1d_lr_depthwise/conv_param_lr_depth.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#define I_T 1000
25
#define O_T 996
36
#define I_F 80

c_reference/tests/conv1d/conv1d_lr_depthwise/test_conv1d_lr_depth.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#include<stdio.h>
25
#include<stdlib.h>
36

c_reference/tests/conv1d/conv1d_regular/conv_param.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
#define I_T 1000
25
#define O_T 996
36
#define I_F 80

0 commit comments

Comments
 (0)