Skip to content

Commit

Permalink
hh
Browse files Browse the repository at this point in the history
  • Loading branch information
DravenALG committed Mar 23, 2022
1 parent cb112a6 commit 07fec99
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Map results (16 bit) of OASIS in three online settings defined in our paper.
| :----------------: | :-------: | :------: |
| **First setting** | 0.8558 | 0.7742 |
| **Second setting** | 0.7833 | 0.7931 |
| **Third setting** | 0.3292 | 0.2386 |
| **Third setting** | 0.1595 | 0.1211 |

## Notes

Expand Down
26 changes: 14 additions & 12 deletions load_dataset.m
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@

labels=linspace(1,24,24);
seperate=cell(train_param.nchunks,1);
seperate{1,1}=[1,2];
seperate{2,1}=[3,4,6,7,8,9,10,11];
seperate{3,1}=[12,13,14,15,16,17,18,19,20,21,22,23,24];
seperate{4,1}=[5];
seperate{1,1}=[5];
seperate{2,1}=[1,2];
seperate{3,1}=[3,4,6,7,8,9,10,11];
seperate{4,1}=[12,13,14,15,16,17,18,19,20,21,22,23,24];


train_param.chunksize = cell(train_param.nchunks,1);
train_param.test_chunksize = cell(train_param.nchunks,1);
Expand Down Expand Up @@ -304,14 +305,15 @@

labels=linspace(1,21,21);
seperate=cell(train_param.nchunks,1);
seperate{1,1}=[2,10,];
seperate{2,1}=[4,6,7];
seperate{3,1}=[8,9,10];
seperate{4,1}=[11,12,13];
seperate{5,1}=[14,15,16,17,18,19,20,21];
seperate{6,1}=[1];
seperate{7,1}=[3];
seperate{8,1}=[5];
seperate{1,1}=[1];
seperate{2,1}=[3];
seperate{3,1}=[5];
seperate{4,1}=[2,10,];
seperate{5,1}=[4,6,7];
seperate{6,1}=[8,9,10];
seperate{7,1}=[11,12,13];
seperate{8,1}=[14,15,16,17,18,19,20,21];


train_param.chunksize = cell(train_param.nchunks,1);
train_param.test_chunksize = cell(train_param.nchunks,1);
Expand Down

0 comments on commit 07fec99

Please sign in to comment.