Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nn tiles - fix a bug and add multi -source #396

Merged
merged 7 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions examples/tiles3_mnist_example/conn_4Router12Client4S.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"connectionsMap":
{
"r1":["apiServer","mainServer", "c1", "s1_0", "r2","c2","c3"],
"r2":["c4", "s2_0","r3","c7","c12"],
"r3":["c5","s3_0" ,"r4","c8","c11"],
"r4":["c6","s4_0", "r1","c9","c10"]
}
}
391 changes: 391 additions & 0 deletions examples/tiles3_mnist_example/dc_12w_12c_13d_4s_4r_tiles_rr.json

Large diffs are not rendered by default.

126 changes: 126 additions & 0 deletions examples/tiles3_mnist_example/exp_tiles_13d_12c_4s_4r_12w_rr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"experimentName": "tiles_rr",
"experimentType": "classification",
"batchSize": 20,
"csvFilePath": "/tmp/nerlnet/data/NerlnetData-master/nerlnet/Tiles_Mnist_sorted/mnist_tiles_sorted.csv",
"numOfFeatures": "252",
"numOfLabels": "10",
"headersNames": "0,1,2,3,4,5,6,7,8,9",
"Phases":
[
{
"phaseName": "training_phase",
"phaseType": "training",
"sourcePieces":
[
{
"sourceName": "s1_0",
"startingSample": "0",
"numOfBatches": "500",
"workers": "w1_0,w1_1,w1_2,w1_3",
"nerltensorType": "float"
},
{
"sourceName": "s2_0",
"startingSample": "59999",
"numOfBatches": "500",
"workers": "w2_0,w2_1,w2_2,w2_3",
"nerltensorType": "float"
},
{
"sourceName": "s3_0",
"startingSample": "119998",
"numOfBatches": "500",
"workers": "w3_0,w3_1,w3_2,w3_3",
"nerltensorType": "float"
}
]
},
{
"phaseName": "training1_phase",
"phaseType": "training",
"sourcePieces":
[
{
"sourceName": "s1_0",
"startingSample": "10000",
"numOfBatches": "500",
"workers": "w1_0,w1_1,w1_2,w1_3",
"nerltensorType": "float"
},
{
"sourceName": "s2_0",
"startingSample": "69999",
"numOfBatches": "500",
"workers": "w2_0,w2_1,w2_2,w2_3",
"nerltensorType": "float"
},
{
"sourceName": "s3_0",
"startingSample": "129998",
"numOfBatches": "500",
"workers": "w3_0,w3_1,w3_2,w3_3",
"nerltensorType": "float"
}
]
},
{
"phaseName": "training2_phase",
"phaseType": "training",
"sourcePieces":
[
{
"sourceName": "s1_0",
"startingSample": "20000",
"numOfBatches": "500",
"workers": "w1_0,w1_1,w1_2,w1_3",
"nerltensorType": "float"
},
{
"sourceName": "s2_0",
"startingSample": "79999",
"numOfBatches": "500",
"workers": "w2_0,w2_1,w2_2,w2_3",
"nerltensorType": "float"
},
{
"sourceName": "s3_0",
"startingSample": "139998",
"numOfBatches": "500",
"workers": "w3_0,w3_1,w3_2,w3_3",
"nerltensorType": "float"
}
]
},
{
"phaseName": "prediction_phase",
"phaseType": "prediction",
"sourcePieces":
[
{
"sourceName": "s1_0",
"startingSample": "32000",
"numOfBatches": "500",
"workers": "w1_0,w1_1,w1_2,w1_3",
"nerltensorType": "float"
},
{
"sourceName": "s2_0",
"startingSample": "91999",
"numOfBatches": "500",
"workers": "w2_0,w2_1,w2_2,w2_3",
"nerltensorType": "float"
},
{
"sourceName": "s3_0",
"startingSample": "151998",
"numOfBatches": "500",
"workers": "w3_0,w3_1,w3_2,w3_3",
"nerltensorType": "float"
}
]
}
]
}


Loading