summaryrefslogtreecommitdiffstats
path: root/estimate.py
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-07-23 19:00:35 +0800
committerPeng Wu <alexepico@gmail.com>2011-07-23 19:00:35 +0800
commit0b04b1330a45fdb0108055d322ee7c5588b74bb8 (patch)
tree0386f23d902662b3ac72bdb489f594aa12e140d8 /estimate.py
parent9e6e016aae1ac59822e7cc6a7e455d19c723413d (diff)
downloadtrainer-0b04b1330a45fdb0108055d322ee7c5588b74bb8.tar.gz
trainer-0b04b1330a45fdb0108055d322ee7c5588b74bb8.tar.xz
trainer-0b04b1330a45fdb0108055d322ee7c5588b74bb8.zip
begin to write estimate.py
Diffstat (limited to 'estimate.py')
-rw-r--r--estimate.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/estimate.py b/estimate.py
new file mode 100644
index 0000000..c36ee03
--- /dev/null
+++ b/estimate.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python3
+import sys
+
+def handleError(error):
+ sys.exit(error)
+
+def handleOneModel(modelfile):
+ pass
+
+def walkThroughModels(path):
+ pass
+
+def gatherModels(indexfile):
+ pass
+
+def sortModels(indexfile, sortedindexfile):
+ pass
+
+if __name__ == '__main__':
+ pass