aaronmarkham commented on a change in pull request #13647: Update lip reading 
example
URL: https://github.com/apache/incubator-mxnet/pull/13647#discussion_r244104943
 
 

 ##########
 File path: example/gluon/lipnet/lipnet_model.ipynb
 ##########
 @@ -0,0 +1,249 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import sys\n",
+    "import mxnet as mx\n",
+    "from mxnet import gluon, autograd ,nd\n",
+    "import argparse\n",
+    "from trainer import  setting_ctx, Train, char_beam_search\n",
+    "from data_loader import LipsDataset\n",
+    "from models.network import LipNet\n",
+    "from mxnet.gluon.data.vision import transforms\n",
+    "from tqdm import tqdm, trange\n",
+    "from utils.common import *"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Set the argument"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "args = dict()\n",
+    "args['batch_size'] = 64\n",
+    "args['epochs'] = 100\n",
+    "args['image_path'] = 
'/home/ubuntu/works/2018/lips_model/data/datasets/'\n",
 
 Review comment:
   Might make it easier if you used paths relative to where this is in the 
examples folder and where the data gets downloaded.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to