We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05c9f0e commit 8e9525fCopy full SHA for 8e9525f
1 file changed
research/modules/5-billion-scale-polypharmacy/src/billionRunOptimized.js
@@ -16,12 +16,12 @@ const path = require('path');
16
const os = require('os');
17
18
const CONFIG = {
19
- totalPatients: 100_000_000, // 100 Million (validation run)
20
- nSites: 100, // 100 sites
+ totalPatients: 1_000_000_000, // 1 Billion (final run!)
+ nSites: 1000, // 1000 sites
21
patientsPerSite: 1_000_000, // 1M per site
22
batchSize: os.cpus().length, // Use all CPU cores
23
- outputDir: path.join(__dirname, '../results/optimized_run'),
24
- checkpointInterval: os.cpus().length,
+ outputDir: path.join(__dirname, '../results/optimized_1billion_run'),
+ checkpointInterval: os.cpus().length * 10, // Checkpoint every 10 batches
25
};
26
27
class OptimizedBillionRunner {
0 commit comments