2023-07-13 22:12:02 +08:00
|
|
|
cd NlpTr
|
|
|
|
mkdir out
|
|
|
|
cd ../NlpProc
|
|
|
|
python3 NlpJsonEncoder.py
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd NlpTr/out
|
|
|
|
for file in *.txt
|
|
|
|
do
|
|
|
|
if test -f $file
|
|
|
|
then
|
|
|
|
txt_file=$file
|
|
|
|
nlp_file=$(basename $file .txt)".nlp"
|
|
|
|
../../NlpCodec/out/NlpCodec encode $txt_file $nlp_file
|
|
|
|
fi
|
|
|
|
done
|
2023-07-25 15:44:50 +08:00
|
|
|
cd ../..
|