diff --git a/example/ner/standard/README.md b/example/ner/standard/README.md index c3f3d2d..2d595a7 100644 --- a/example/ner/standard/README.md +++ b/example/ner/standard/README.md @@ -34,25 +34,13 @@ git clone git@github.com:zjunlp/DeepKE.git - `train.txt`:存放训练数据集 - `valid.txt`:存放验证数据集 - `test.txt`:存放测试数据集 +- 开始训练:```python run.py``` (训练所用到参数都在conf文件夹中,修改即可) -- 先进行训练,训练后的模型参数保存在`out_ner`文件夹中 - - ``` - python run.py --data_dir=data/ --bert_model=bert-base-cased --task_name=ner --output_dir=out_ner --max_seq_length=128 --do_train --num_train_epochs 5 --do_eval --warmup_proportion=0.1 - ``` - -- 再进行预测 - - - 执行以下命令运行示例`python predict.py` - - - 如果需要指定NER的文本,可以利用--text参数指定,如: - - ```` - python predict.py --text="It was one o'clock when we left Lauriston Gardens and Sherlock Holmes led me to Metropolitan Police Service.." - ```` - +- 每次训练的日志保存在 `logs` 文件夹内,模型结果保存在 `checkpoints` 文件夹内。 +- 进行预测 ```python predict.py``` ## 模型内容 BERT + diff --git a/tutorial-notebooks/ae/regular/RNN_AE.ipynb b/tutorial-notebooks/ae/standard/RNN_AE.ipynb similarity index 100% rename from tutorial-notebooks/ae/regular/RNN_AE.ipynb rename to tutorial-notebooks/ae/standard/RNN_AE.ipynb diff --git a/tutorial-notebooks/ae/regular/data/attribute.csv b/tutorial-notebooks/ae/standard/data/attribute.csv similarity index 100% rename from tutorial-notebooks/ae/regular/data/attribute.csv rename to tutorial-notebooks/ae/standard/data/attribute.csv diff --git a/tutorial-notebooks/ae/regular/data/test.csv b/tutorial-notebooks/ae/standard/data/test.csv similarity index 100% rename from tutorial-notebooks/ae/regular/data/test.csv rename to tutorial-notebooks/ae/standard/data/test.csv diff --git a/tutorial-notebooks/ae/regular/data/train.csv b/tutorial-notebooks/ae/standard/data/train.csv similarity index 100% rename from tutorial-notebooks/ae/regular/data/train.csv rename to tutorial-notebooks/ae/standard/data/train.csv diff --git a/tutorial-notebooks/ae/regular/data/valid.csv b/tutorial-notebooks/ae/standard/data/valid.csv similarity index 100% rename from tutorial-notebooks/ae/regular/data/valid.csv rename to tutorial-notebooks/ae/standard/data/valid.csv diff --git a/tutorial-notebooks/ae/regular/img/LSTM.jpg b/tutorial-notebooks/ae/standard/img/LSTM.jpg similarity index 100% rename from tutorial-notebooks/ae/regular/img/LSTM.jpg rename to tutorial-notebooks/ae/standard/img/LSTM.jpg diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt.zip b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt.zip similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt.zip rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt.zip diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/README b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/README similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/README rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/README diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/czech.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/czech.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/czech.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/czech.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/danish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/danish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/danish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/danish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/dutch.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/dutch.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/dutch.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/dutch.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/english.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/english.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/english.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/english.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/estonian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/estonian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/estonian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/estonian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/finnish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/finnish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/finnish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/finnish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/french.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/french.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/french.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/french.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/german.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/german.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/german.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/german.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/greek.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/greek.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/greek.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/greek.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/italian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/italian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/italian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/italian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/norwegian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/norwegian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/norwegian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/norwegian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/polish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/polish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/polish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/polish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/portuguese.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/portuguese.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/portuguese.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/portuguese.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/russian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/russian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/russian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/russian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/slovene.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/slovene.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/slovene.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/slovene.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/spanish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/spanish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/spanish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/spanish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/swedish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/swedish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/swedish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/swedish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/turkish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/turkish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/PY3/turkish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/PY3/turkish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/README b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/README similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/README rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/README diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/czech.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/czech.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/czech.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/czech.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/danish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/danish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/danish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/danish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/dutch.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/dutch.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/dutch.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/dutch.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/english.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/english.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/english.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/english.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/estonian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/estonian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/estonian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/estonian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/finnish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/finnish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/finnish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/finnish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/french.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/french.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/french.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/french.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/german.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/german.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/german.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/german.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/greek.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/greek.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/greek.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/greek.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/italian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/italian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/italian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/italian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/norwegian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/norwegian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/norwegian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/norwegian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/polish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/polish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/polish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/polish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/portuguese.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/portuguese.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/portuguese.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/portuguese.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/russian.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/russian.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/russian.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/russian.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/slovene.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/slovene.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/slovene.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/slovene.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/spanish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/spanish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/spanish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/spanish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/swedish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/swedish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/swedish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/swedish.pickle diff --git a/tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/turkish.pickle b/tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/turkish.pickle similarity index 100% rename from tutorial-notebooks/ner/regular/data/nltk_data/tokenizers/punkt/turkish.pickle rename to tutorial-notebooks/ner/standard/data/nltk_data/tokenizers/punkt/turkish.pickle diff --git a/tutorial-notebooks/ner/regular/data/test.txt b/tutorial-notebooks/ner/standard/data/test.txt similarity index 100% rename from tutorial-notebooks/ner/regular/data/test.txt rename to tutorial-notebooks/ner/standard/data/test.txt diff --git a/tutorial-notebooks/ner/regular/data/train.txt b/tutorial-notebooks/ner/standard/data/train.txt similarity index 100% rename from tutorial-notebooks/ner/regular/data/train.txt rename to tutorial-notebooks/ner/standard/data/train.txt diff --git a/tutorial-notebooks/ner/regular/data/valid.txt b/tutorial-notebooks/ner/standard/data/valid.txt similarity index 100% rename from tutorial-notebooks/ner/regular/data/valid.txt rename to tutorial-notebooks/ner/standard/data/valid.txt diff --git a/tutorial-notebooks/ner/standard/img/BERT.png b/tutorial-notebooks/ner/standard/img/BERT.png new file mode 100644 index 0000000..ab026ff Binary files /dev/null and b/tutorial-notebooks/ner/standard/img/BERT.png differ diff --git a/tutorial-notebooks/ner/regular/tutorial.ipynb b/tutorial-notebooks/ner/standard/tutorial.ipynb similarity index 98% rename from tutorial-notebooks/ner/regular/tutorial.ipynb rename to tutorial-notebooks/ner/standard/tutorial.ipynb index b7cc497..ba9fd99 100644 --- a/tutorial-notebooks/ner/regular/tutorial.ipynb +++ b/tutorial-notebooks/ner/standard/tutorial.ipynb @@ -65,7 +65,9 @@ "metadata": {}, "source": [ "## BERT\n", - "[**Bidirectional Encoder Representations from Transformers (BERT)**](https://github.com/google-research/bert) is a transformer-based machine learning technique for natural language processing (NLP) pre-training developed by Google." + "[**Bidirectional Encoder Representations from Transformers (BERT)**](https://github.com/google-research/bert) is a transformer-based machine learning technique for natural language processing (NLP) pre-training developed by Google.\n", + "\n", + "![BERT](img\\BERT.png)" ] }, { @@ -894,7 +896,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "Python 3", "language": "python", "name": "python3" }, @@ -909,6 +911,24 @@ "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.11" + }, + "latex_envs": { + "LaTeX_envs_menu_present": true, + "autoclose": false, + "autocomplete": true, + "bibliofile": "biblio.bib", + "cite_by": "apalike", + "current_citInitial": 1, + "eqLabelWithNumbers": true, + "eqNumInitial": 1, + "hotkeys": { + "equation": "Ctrl-E", + "itemize": "Ctrl-I" + }, + "labels_anchors": false, + "latex_user_defs": false, + "report_style_numbering": false, + "user_envs_cfg": false } }, "nbformat": 4, diff --git a/tutorial-notebooks/re/regular/GCN.ipynb b/tutorial-notebooks/re/standard/GCN.ipynb similarity index 100% rename from tutorial-notebooks/re/regular/GCN.ipynb rename to tutorial-notebooks/re/standard/GCN.ipynb diff --git a/tutorial-notebooks/re/regular/LM.ipynb b/tutorial-notebooks/re/standard/LM.ipynb similarity index 100% rename from tutorial-notebooks/re/regular/LM.ipynb rename to tutorial-notebooks/re/standard/LM.ipynb diff --git a/tutorial-notebooks/re/regular/PCNN.ipynb b/tutorial-notebooks/re/standard/PCNN.ipynb similarity index 100% rename from tutorial-notebooks/re/regular/PCNN.ipynb rename to tutorial-notebooks/re/standard/PCNN.ipynb diff --git a/tutorial-notebooks/re/regular/data/relation.csv b/tutorial-notebooks/re/standard/data/relation.csv similarity index 100% rename from tutorial-notebooks/re/regular/data/relation.csv rename to tutorial-notebooks/re/standard/data/relation.csv diff --git a/tutorial-notebooks/re/regular/data/test.csv b/tutorial-notebooks/re/standard/data/test.csv similarity index 100% rename from tutorial-notebooks/re/regular/data/test.csv rename to tutorial-notebooks/re/standard/data/test.csv diff --git a/tutorial-notebooks/re/regular/data/train.csv b/tutorial-notebooks/re/standard/data/train.csv similarity index 100% rename from tutorial-notebooks/re/regular/data/train.csv rename to tutorial-notebooks/re/standard/data/train.csv diff --git a/tutorial-notebooks/re/regular/data/valid.csv b/tutorial-notebooks/re/standard/data/valid.csv similarity index 100% rename from tutorial-notebooks/re/regular/data/valid.csv rename to tutorial-notebooks/re/standard/data/valid.csv diff --git a/tutorial-notebooks/re/regular/img/Bert.png b/tutorial-notebooks/re/standard/img/Bert.png similarity index 100% rename from tutorial-notebooks/re/regular/img/Bert.png rename to tutorial-notebooks/re/standard/img/Bert.png diff --git a/tutorial-notebooks/re/regular/img/GCN.png b/tutorial-notebooks/re/standard/img/GCN.png similarity index 100% rename from tutorial-notebooks/re/regular/img/GCN.png rename to tutorial-notebooks/re/standard/img/GCN.png diff --git a/tutorial-notebooks/re/regular/img/PCNN.jpg b/tutorial-notebooks/re/standard/img/PCNN.jpg similarity index 100% rename from tutorial-notebooks/re/regular/img/PCNN.jpg rename to tutorial-notebooks/re/standard/img/PCNN.jpg