Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix for undefined names in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
vandanavk committed Aug 7, 2018
1 parent c1c08df commit 65f7f07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/rnn/word_lm/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import argparse, math
import logging
from data import Corpus, CorpusIter
from model import *
from model import rnn, softmax_ce_loss
from module import *
from mxnet.model import BatchEndParam

Expand Down
2 changes: 1 addition & 1 deletion example/sparse/factorization_machine/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import mxnet as mx
from metric import *
from mxnet.test_utils import *
from model import *
from model import factorization_machine_model
import argparse, os

parser = argparse.ArgumentParser(description="Run factorization machine with criteo dataset",
Expand Down
4 changes: 2 additions & 2 deletions example/sparse/wide_deep/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

import mxnet as mx
from mxnet.test_utils import *
from data import *
from model import *
from data import get_uci_adult
from model import wide_deep_model
import argparse
import os

Expand Down

0 comments on commit 65f7f07

Please sign in to comment.