mirror of
https://github.com/InternLM/InternBootcamp.git
synced 2026-04-19 12:58:04 +00:00
refactor(data_pipeline): optimize data generation pipeline; add multiple preset configurations for data generation
This commit is contained in:
parent
1a8477c8d8
commit
8d493b35a0
2160 changed files with 69199 additions and 154 deletions
50
examples/pipelines/all_configs/Dcompletetripartite_test.json
Normal file
50
examples/pipelines/all_configs/Dcompletetripartite_test.json
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
[
|
||||
{
|
||||
"n_min": 3,
|
||||
"n_max": 50,
|
||||
"seed": 123,
|
||||
"enforce_valid": false,
|
||||
"sizes": [
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
"edge_ratio": 0.8
|
||||
},
|
||||
{
|
||||
"n_min": 3,
|
||||
"n_max": 20,
|
||||
"seed": 42,
|
||||
"enforce_valid": true,
|
||||
"sizes": [
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"edge_ratio": 1.0
|
||||
},
|
||||
{
|
||||
"n_min": 3,
|
||||
"n_max": 15,
|
||||
"seed": 101,
|
||||
"enforce_valid": false,
|
||||
"sizes": [
|
||||
1,
|
||||
2,
|
||||
3
|
||||
],
|
||||
"edge_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"n_min": 3,
|
||||
"n_max": 25,
|
||||
"seed": 202,
|
||||
"enforce_valid": true,
|
||||
"sizes": [
|
||||
4,
|
||||
4,
|
||||
4
|
||||
],
|
||||
"edge_ratio": 1.0
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue