Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
221cb0332
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2022
221cb0332
Commits
074b2aa5
Commit
074b2aa5
authored
2 years ago
by
徐锦明
Committed by
格物致知
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix issue I5OMSN
Signed-off-by:
徐锦明
<
532925744@qq.com
>
parent
4fb4d9bf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
official/nlp/lstm/README.md
+1
-1
1 addition, 1 deletion
official/nlp/lstm/README.md
official/nlp/lstm/README_CN.md
+1
-1
1 addition, 1 deletion
official/nlp/lstm/README_CN.md
official/nlp/lstm/preprocess.py
+1
-2
1 addition, 2 deletions
official/nlp/lstm/preprocess.py
with
3 additions
and
4 deletions
official/nlp/lstm/README.md
+
1
−
1
View file @
074b2aa5
...
...
@@ -419,7 +419,7 @@ Ascend:
python export.py
--ckpt_file
[
CKPT_PATH]
--file_name
[
FILE_NAME]
--file_format
[
FILE_FORMAT]
--config_path
[
YAML_CONFIG_PATH]
```
-
`weight.txt`
is required,
pleas
e generate
it by run preprocess.py. Then you will see this file in /preprocess
.
-
`weight.txt`
is required,
it will b
e generate
d with mindrecords by training model
.
-
`ckpt_file`
parameter is required.
-
`FILE_FORMAT`
should be in ["AIR", "MINDIR", "ONNX"].
-
`YAML_CONFIG_PATH`
default is
`default_config.yaml`
.
...
...
This diff is collapsed.
Click to expand it.
official/nlp/lstm/README_CN.md
+
1
−
1
View file @
074b2aa5
...
...
@@ -421,7 +421,7 @@ Ascend:
python export.py
--ckpt_file
[
CKPT_PATH]
--file_name
[
FILE_NAME]
--file_format
[
FILE_FORMAT]
--config_path
[
YAML_CONFIG_PATH]
```
-
`weight.txt`
文件
在导出脚本中要用到,需要运行preprocess.py文件生成
。
-
`weight.txt`
文件
需要在训练模型时获得
。
-
`ckpt_file`
是必需的。
-
`FILE_FORMAT`
必须在 ["AIR", "MINDIR", "ONNX"]中进行选择。
-
`YAML_CONFIG_PATH`
默认是
`default_config.yaml`
。
...
...
This diff is collapsed.
Click to expand it.
official/nlp/lstm/preprocess.py
+
1
−
2
View file @
074b2aa5
...
...
@@ -18,13 +18,12 @@
import
os
import
numpy
as
np
from
src.dataset
import
lstm_create_dataset
,
convert_to_mindrecord
from
src.dataset
import
lstm_create_dataset
from
src.model_utils.config
import
config
if
__name__
==
'
__main__
'
:
print
(
"
============== Starting Data Pre-processing ==============
"
)
convert_to_mindrecord
(
config
.
embed_size
,
config
.
aclimdb_path
,
config
.
preprocess_path
,
config
.
glove_path
)
dataset
=
lstm_create_dataset
(
config
.
preprocess_path
,
config
.
batch_size
,
training
=
False
)
img_path
=
os
.
path
.
join
(
config
.
result_path
,
"
00_data
"
)
os
.
makedirs
(
img_path
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment