Skip to content

Commit 7a39f57

Browse files
committed
changes to update brief and details description
1 parent 391ade2 commit 7a39f57

File tree

9 files changed

+47
-18
lines changed

9 files changed

+47
-18
lines changed

examples/eager_op_multithread/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
/*!
2525
* @file main.cpp
26+
* @brief Test the behavior of cppflow with multiple threads
27+
* @details Test the behavior of cppflow with multiple threads
2628
* @author Jiannan Liu
2729
* @author Sergio Izquierdo
2830
* @date @showdate "%B %d, %Y" 2020-10-26

examples/efficientnet/create_model.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@
2525
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
# SOFTWARE.
2727

28-
##
29-
# @file create_model.py
30-
# @author Sergio Izquierdo
31-
# @date @showdate "%B %d, %Y" 2020-09-16
28+
# @file create_model.py
29+
#
30+
# @brief Creates and saves an EfficientNet model.
31+
#
32+
# @section description_create_model Creates and saves an EfficientNet model.
33+
#
34+
# @section author_create_model Author(s)
35+
# - Created by Sergio Izquierdo
3236

3337
# Imports
3438
import tensorflow as tf

examples/efficientnet/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
/*!
2525
* @file main.cpp
26+
* @brief Run EfficientNet on a cat image as an example.
27+
* @details Run an EfficientNet model on a cat image and print the result.
28+
* The EfficientNet model should be downloaded running create_model.py
2629
* @author Florian
2730
* @author Sergio Izquierdo
2831
* @date @showdate "%B %d, %Y" 2020-09-16

examples/load_frozen_graph/create_model.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@
2727
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2828
# SOFTWARE.
2929

30-
##
31-
# @file create_model.py
32-
# @author Daisuke Kato
33-
# @author Paul
34-
# @author Sergio Izquierdo
35-
# @date @showdate "%B %d, %Y" 2021-09-16
30+
# @file create_model.py
31+
#
32+
# @brief Creates and saves a simple Keras model as a frozen graph.
33+
#
34+
# @section Creates and saves a simple Keras model as a frozen graph.
35+
#
36+
# @section author_create_model Author(s)
37+
# - Created by Daisuke Kato
38+
# - Created by Paul
39+
# - Modified by Sergio Izquierdo
3640

3741
# Imports
3842
import tensorflow as tf

examples/load_frozen_graph/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424

2525
/*!
2626
* @file main.cpp
27+
* @brief Loads a frozen graph model and runs it with dummy data
28+
* @details Loads a simple Keras model saved in frozen graph format
29+
* and runs it with dummy data
2730
* @author Daisuke Kato
2831
* @author Paul
2932
* @author Sergio Izquierdo

examples/load_model/create_model.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@
2525
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
# SOFTWARE.
2727

28-
##
29-
# @file create_model.py
30-
# @author Sergio Izquierdo
31-
# @date @showdate "%B %d, %Y" 2019-05-16
28+
# @file create_model.py
29+
#
30+
# @brief Creates and saves a simple Keras model as a saved model.
31+
#
32+
# @section Creates and saves a simple Keras model as a saved model.
33+
#
34+
# @section author_create_model Author(s)
35+
# - Created by Sergio Izquierdo
3236

3337
# Imports
3438
import tensorflow as tf

examples/multi_input_output/create_model.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@
2525
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2626
# SOFTWARE.
2727

28-
##
29-
# @file create_model.py
30-
# @author Sergio Izquierdo
31-
# @date @showdate "%B %d, %Y" 2020-10-20
28+
# @file create_model.py
29+
#
30+
# @brief Creates and saves a simple multi input multi output Keras model.
31+
#
32+
# @section Creates and saves a simple multi input multi output Keras model.
33+
#
34+
# @section author_create_model Author(s)
35+
# - Created by Sergio Izquierdo
3236

3337
# Imports
3438
import tensorflow as tf

examples/multi_input_output/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
/*!
2525
* @file main.cpp
26+
* @brief Loads a saved multi input/output model and runs it with dummy data
27+
* @details Loads a simple Keras model with multiple inputs and outputs saved
28+
* in saved model format and runs it with dummy data
2629
* @author Florian
2730
* @author Sergio Izquierdo
2831
* @date @showdate "%B %d, %Y" 2020-10-15

examples/tensor/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
/*!
2626
* @file main.cpp
27+
* @brief Tests tensors allocation and deallocation
28+
* @details Tests tensors allocation and deallocation
2729
* @author Jiannan Liu
2830
* @author Seungtaek Kim
2931
* @author Sergio Izquierdo

0 commit comments

Comments
 (0)