소스 검색

Seperation -> Separation

Neal Wu 8 년 전
부모
커밋
9333e60779
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      domain_adaptation/domain_separation/README.md
  2. 1 1
      domain_adaptation/domain_separation/dsn_train.py

+ 2 - 2
domain_adaptation/domain_separation/README.md

@@ -1,4 +1,4 @@
-# Domain Seperation Networks
+# Domain Separation Networks
 
 
 ## Introduction
@@ -52,7 +52,7 @@ Evaluation can be invoked with the following command:\
 $ ./bazel-bin/domain_adaptation/domain_separation/dsn_eval  \
     -v --dataset mnist_m --split test --num_examples=9001  \
     --dataset_dir=${DSN_DATA_DIR}
-# Domain Seperation Networks
+# Domain Separation Networks
 
 ## Introduction
 This code is the code used for the "Domain Separation Networks" paper

+ 1 - 1
domain_adaptation/domain_separation/dsn_train.py

@@ -70,7 +70,7 @@ tf.app.flags.DEFINE_string('train_log_dir', '/tmp/da/',
 
 tf.app.flags.DEFINE_string(
     'layers_to_regularize', 'fc3',
-    'Comma-seperated list of layer names to use MMD regularization on.')
+    'Comma-separated list of layer names to use MMD regularization on.')
 
 tf.app.flags.DEFINE_float('learning_rate', .01, 'The learning rate')