Skip to content

Commit d91d5ef

Browse files
committed
update file info
1 parent a1d689f commit d91d5ef

12 files changed

+58
-60
lines changed

cnns.ipynb

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,13 @@
4444
"import resnet_v1 as resnet\n",
4545
"import cnn_model as cnnm\n",
4646
"\n",
47-
"\n",
48-
"__author__ = \"Udo Dehm\"\n",
47+
"__author__ = \"ud\"\n",
4948
"__copyright__ = \"Copyright 2017\"\n",
50-
"__credits__ = [\"Udo Dehm\"]\n",
49+
"__credits__ = [\"[email protected]\"]\n",
5150
"__license__ = \"\"\n",
5251
"__version__ = \"0.1\"\n",
53-
"__maintainer__ = \"Udo Dehm\"\n",
54-
"__email__ = \"udo.dehm@mailbox.org\"\n",
52+
"__maintainer__ = \"ud\"\n",
53+
"__email__ = \"phthalo@mailbox.org\"\n",
5554
"__status__ = \"Development\"\n",
5655
"\n",
5756
"__all__ = ['train_network_sintel', 'train_network_iiw', 'train_network']\n",
@@ -1769,4 +1768,4 @@
17691768
},
17701769
"nbformat": 4,
17711770
"nbformat_minor": 2
1772-
}
1771+
}

cnns.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
import cnn_model as cnnm
4343

4444

45-
__author__ = "Udo Dehm"
45+
__author__ = "ud"
4646
__copyright__ = "Copyright 2017"
47-
__credits__ = ["Udo Dehm"]
47+
__credits__ = ["[email protected]"]
4848
__license__ = ""
4949
__version__ = "0.1"
50-
__maintainer__ = "Udo Dehm"
51-
__email__ = "udo.dehm@mailbox.org"
50+
__maintainer__ = "ud"
51+
__email__ = "phthalo@mailbox.org"
5252
__status__ = "Development"
5353

5454
__all__ = ['train_network_sintel', 'train_network_iiw', 'train_network']

cnns_predict.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@
6565
"\n",
6666
"pd.set_option(\"display.precision\", 4)\n",
6767
"\n",
68-
"__author__ = \"Udo Dehm\"\n",
68+
"__author__ = \"ud\"\n",
6969
"__copyright__ = \"Copyright 2017\"\n",
70-
"__credits__ = [\"Udo Dehm\"]\n",
70+
"__credits__ = [\"[email protected]\"]\n",
7171
"__license__ = \"\"\n",
7272
"__version__ = \"0.1\"\n",
73-
"__maintainer__ = \"Udo Dehm\"\n",
74-
"__email__ = \"udo.dehm@mailbox.org\"\n",
73+
"__maintainer__ = \"ud\"\n",
74+
"__email__ = \"phthalo@mailbox.org\"\n",
7575
"__status__ = \"Development\"\n",
7676
"\n",
7777
"__all__ = ['predict']\n",
@@ -3296,4 +3296,4 @@
32963296
},
32973297
"nbformat": 4,
32983298
"nbformat_minor": 2
3299-
}
3299+
}

input_queues.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
import scipy.ndimage
1818

1919

20-
__author__ = "Udo Dehm"
20+
__author__ = "ud"
2121
__copyright__ = "Copyright 2017"
22-
__credits__ = ["Udo Dehm"]
22+
__credits__ = ["[email protected]"]
2323
__license__ = ""
2424
__version__ = "0.1"
25-
__maintainer__ = "Udo Dehm"
26-
__email__ = "udo.dehm@mailbox.org"
25+
__maintainer__ = "ud"
26+
__email__ = "phthalo@mailbox.org"
2727
__status__ = "Development"
2828

2929
__all__ = ['SintelDataInputQueue', 'DataInputQueue', 'next_batch',

loss_function_analysis.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"import matplotlib.pyplot as plt\n",
1919
"plt.style.use('ggplot')\n",
2020
"\n",
21-
"__author__ = \"Udo Dehm\"\n",
21+
"__author__ = \"ud\"\n",
2222
"__copyright__ = \"Copyright 2017\"\n",
23-
"__credits__ = [\"Udo Dehm\"]\n",
23+
"__credits__ = [\"[email protected]\"]\n",
2424
"__license__ = \"\"\n",
2525
"__version__ = \"0.1\"\n",
26-
"__maintainer__ = \"Udo Dehm\"\n",
27-
"__email__ = \"udo.dehm@mailbox.org\"\n",
26+
"__maintainer__ = \"ud\"\n",
27+
"__email__ = \"phthalo@mailbox.org\"\n",
2828
"__status__ = \"Development\""
2929
]
3030
},
@@ -3947,4 +3947,4 @@
39473947
},
39483948
"nbformat": 4,
39493949
"nbformat_minor": 2
3950-
}
3950+
}

scripts_cnn_models_slim/cnn_model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
import initializers_custom as ic
1818

1919

20-
__author__ = "Udo Dehm"
20+
__author__ = "ud"
2121
__copyright__ = "Copyright 2017"
22-
__credits__ = ["Udo Dehm"]
22+
__credits__ = ["[email protected]"]
2323
__license__ = ""
2424
__version__ = "0.1"
25-
__maintainer__ = "Udo Dehm"
26-
__email__ = "udo.dehm@mailbox.org"
25+
__maintainer__ = "ud"
26+
__email__ = "phthalo@mailbox.org"
2727
__status__ = "Development"
2828

2929

util/cnn_helpers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
import tensorflow as tf
88
import nn_helpers as nnhelp
99

10-
__author__ = "Udo Dehm"
10+
__author__ = "ud"
1111
__copyright__ = "Copyright 2017"
12-
__credits__ = ["Udo Dehm"]
12+
__credits__ = ["[email protected]"]
1313
__license__ = ""
1414
__version__ = "0.1"
15-
__maintainer__ = "Udo Dehm"
16-
__email__ = "udo.dehm@mailbox.org"
15+
__maintainer__ = "ud"
16+
__email__ = "phthalo@mailbox.org"
1717
__status__ = "Development"
1818

1919

util/data_structure.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
import scipy.misc
2525
import download
2626

27-
__author__ = "Udo Dehm"
27+
__author__ = "ud"
2828
__copyright__ = "Copyright 2017"
29-
__credits__ = ["Udo Dehm"]
29+
__credits__ = ["[email protected]"]
3030
__license__ = ""
3131
__version__ = "0.1"
32-
__maintainer__ = "Udo Dehm"
33-
__email__ = "udo.dehm@mailbox.org"
32+
__maintainer__ = "ud"
33+
__email__ = "phthalo@mailbox.org"
3434
__status__ = "Development"
3535

3636
__all__ = ['', 'main']

util/general_helpers.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
import scipy as sp
1111

1212

13-
__author__ = "Udo Dehm"
14-
__copyright__ = "Copyright 2017"
15-
__credits__ = ["Udo Dehm"]
16-
__license__ = ""
17-
__version__ = "0.1"
18-
__maintainer__ = "Udo Dehm"
19-
__email__ = "udo.dehm@mailbox.org"
13+
__author__ = "ud"
14+
__copyright__ = "Copyright 2017"
15+
__credits__ = ["[email protected]"]
16+
__license__ = ""
17+
__version__ = "0.1"
18+
__maintainer__ = "ud"
19+
__email__ = "phthalo@mailbox.org"
2020
__status__ = "Development"
2121

2222

util/initializers_custom.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@
1010
import tensorflow as tf
1111
from tensorflow.python.ops import random_ops
1212

13-
__author__ = "Udo Dehm"
13+
__author__ = "ud"
1414
__copyright__ = "Copyright 2017"
15-
__credits__ = ["Udo Dehm"]
15+
__credits__ = ["[email protected]"]
1616
__license__ = ""
1717
__version__ = "0.1"
18-
__maintainer__ = "Udo Dehm"
19-
__email__ = "udo.dehm@mailbox.org"
18+
__maintainer__ = "ud"
19+
__email__ = "phthalo@mailbox.org"
2020
__status__ = "Development"
2121

22-
2322
__all__ = ['_xavier_msra', 'xavier_msra_initializer',
2423
'xavier_msra_initializer_conv2d']
2524

util/nn_helpers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
import numpy as np
99
import tensorflow as tf
1010

11-
__author__ = "Udo Dehm"
11+
__author__ = "ud"
1212
__copyright__ = "Copyright 2017"
13-
__credits__ = ["Udo Dehm"]
13+
__credits__ = ["[email protected]"]
1414
__license__ = ""
1515
__version__ = "0.1"
16-
__maintainer__ = "Udo Dehm"
17-
__email__ = "udo.dehm@mailbox.org"
16+
__maintainer__ = "ud"
17+
__email__ = "phthalo@mailbox.org"
1818
__status__ = "Development"
1919

2020

util/plot_helpers.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
import matplotlib.pyplot as plt
1010
from IPython.display import clear_output, Image, display, HTML
1111

12-
__author__ = "Udo Dehm"
13-
__copyright__ = "Copyright 2017"
14-
__credits__ = ["Udo Dehm"]
15-
__license__ = ""
16-
__version__ = "0.1"
17-
__maintainer__ = "Udo Dehm"
18-
__email__ = "udo.dehm@mailbox.org"
19-
__status__ = "Development"
12+
__author__ = "ud"
13+
__copyright__ = "Copyright 2017"
14+
__credits__ = ["[email protected]"]
15+
__license__ = ""
16+
__version__ = "0.1"
17+
__maintainer__ = "ud"
18+
__email__ = "phthalo@mailbox.org"
19+
__status__ = "Development"
2020

2121

2222
__all__ = ['plot_images']

0 commit comments

Comments
 (0)