deepboard 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- deepboard/__version__.py +1 -1
- deepboard/resultTable/table_schema.py +2 -1
- {deepboard-0.2.1.dist-info → deepboard-0.2.2.dist-info}/METADATA +1 -1
- {deepboard-0.2.1.dist-info → deepboard-0.2.2.dist-info}/RECORD +6 -6
- {deepboard-0.2.1.dist-info → deepboard-0.2.2.dist-info}/WHEEL +0 -0
- {deepboard-0.2.1.dist-info → deepboard-0.2.2.dist-info}/entry_points.txt +0 -0
deepboard/__version__.py
CHANGED
@@ -38,6 +38,7 @@ def create_database(db_path):
|
|
38
38
|
|
39
39
|
# Create Logs table for scalar values
|
40
40
|
# Wall time is in seconds
|
41
|
+
# We must allow NULL values for the value column when the value is NaN
|
41
42
|
cursor.execute("""
|
42
43
|
CREATE TABLE IF NOT EXISTS Logs
|
43
44
|
(
|
@@ -47,7 +48,7 @@ def create_database(db_path):
|
|
47
48
|
step INTEGER NOT NULL,
|
48
49
|
split varchar (128) NOT NULL,
|
49
50
|
label varchar(128) NOT NULL,
|
50
|
-
value REAL
|
51
|
+
value REAL,
|
51
52
|
wall_time REAL NOT NULL,
|
52
53
|
run_rep INTEGER NOT NULL,
|
53
54
|
FOREIGN KEY(run_id) REFERENCES Experiments(run_id)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: deepboard
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.2
|
4
4
|
Summary: Organize your research project like a pro with Deepboard
|
5
5
|
Project-URL: Homepage, https://github.com/anthol42/deepboard
|
6
6
|
Project-URL: Issues, https://github.com/anthol42/deepboard/issues
|
@@ -1,5 +1,5 @@
|
|
1
1
|
deepboard/__init__.py,sha256=nMXg9GFsk8gCcyBnh1MAeUPvo4Zcuv3sdwGHZrxfpPE,36
|
2
|
-
deepboard/__version__.py,sha256=
|
2
|
+
deepboard/__version__.py,sha256=l76BxtxMMS4ZlmaydbuRDEH38H3W6gHEk8IO2zVcask,171
|
3
3
|
deepboard/gui/THEME.yml,sha256=Cj7iDLGOYi_rmj6O7REadkukoiZkut-faNPDlD9qkII,645
|
4
4
|
deepboard/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
deepboard/gui/entry.py,sha256=GPG5BJ2nOVqRfTlPFL-wYIcvySZEotk6gO52Ww_LUxA,576
|
@@ -61,9 +61,9 @@ deepboard/resultTable/cursor.py,sha256=YZrCQeISPqXcH9KhKhearK5LEyM2rc_fqH8axnFUX
|
|
61
61
|
deepboard/resultTable/logwritter.py,sha256=iXbPkfp5t0dd4Ojydw0zWKEpgKE7SXEmmasSfmPjegM,27046
|
62
62
|
deepboard/resultTable/resultTable.py,sha256=e_xSAZmA6xAKL7sdKo_43ToDUsr6JI0TgHL7x3paltQ,24584
|
63
63
|
deepboard/resultTable/scalar.py,sha256=6pakiOafTxoj2yCTCn0Y300ECK23KKQ-orTHvWT5pLI,1347
|
64
|
-
deepboard/resultTable/table_schema.py,sha256=
|
64
|
+
deepboard/resultTable/table_schema.py,sha256=Xt0m8G6x74Dxgiq5KYnYUmv3hr5KGgBFfPsoQcnHB1o,4388
|
65
65
|
deepboard/resultTable/utils.py,sha256=3K0rt5QDHv0aOld8KiXFGXvTUBiTskgnNxEjAApqCFQ,1424
|
66
|
-
deepboard-0.2.
|
67
|
-
deepboard-0.2.
|
68
|
-
deepboard-0.2.
|
69
|
-
deepboard-0.2.
|
66
|
+
deepboard-0.2.2.dist-info/METADATA,sha256=TN6KSddi8MWNUYq6OjpIlbHfPMkj_fRgd-7zPlgyARA,8508
|
67
|
+
deepboard-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
68
|
+
deepboard-0.2.2.dist-info/entry_points.txt,sha256=SFQjQXlWt2867B5_Lu9PVzB8pIUYbCSpPsViqyRZCyk,55
|
69
|
+
deepboard-0.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|