Update how_to_create_your_model.md

This commit is contained in:
noahshen98
2021-10-18 16:04:36 +08:00
committed by GitHub
parent 3ff35d5c93
commit 84c4d484a6
+1 -1
View File
@@ -1,4 +1,4 @@
# How to Create Your Own Model
This section of documentation will be **refined in the future**. For now, you can refer these files: [default config](config/default.yaml), [baseline config](config/baseline.yaml), [loss aggregator](../lib/modeling/loss_aggregator.py), [base_model](../lib/modeling/base_model.py), and [baseline model](../lib/modeling/models/baseline.py).
This section of documentation will be **refined in the future**. For now, you can refer these files: [default config](../config/default.yaml), [baseline config](../config/baseline.yaml), [loss aggregator](../lib/modeling/loss_aggregator.py), [base_model](../lib/modeling/base_model.py), and [baseline model](../lib/modeling/models/baseline.py).
Then, you can write your own model in `lib\modeling\models`, and use it in configuration file.