leo19941227
commited on
Commit
·
df0a019
1
Parent(s):
7bf5d76
fix typo and doc 3rd packages
Browse files- README.md +4 -2
- {{cookiecutter.repo_name}}/README.md +4 -2
README.md
CHANGED
@@ -90,13 +90,15 @@ That's it! You're now all set to start pretraining your speech models - see the
|
|
90 |
|
91 |
To make a submission to the [leaderboard](https://superbbenchmark.org/leaderboard), there are 4 main steps:
|
92 |
|
93 |
-
1. Modify `expert.py` and `model.
|
94 |
|
95 |
```python
|
96 |
upstream = UpstreamExpert(ckpt="./model.pt")
|
97 |
```
|
|
|
|
|
98 |
|
99 |
-
2. Validate the upstream model meets the requirements in the [challenge policy](https://superbbenchmark.org/challenge). If everything is correct, you should see the following message: "All submission files validated! Now you can make a submission."
|
100 |
|
101 |
```
|
102 |
python cli.py validate
|
|
|
90 |
|
91 |
To make a submission to the [leaderboard](https://superbbenchmark.org/leaderboard), there are 4 main steps:
|
92 |
|
93 |
+
1. Modify `expert.py` and change `model.pt` so we can initialize an upstream model following the [challenge policy](https://superbbenchmark.org/challenge) by:
|
94 |
|
95 |
```python
|
96 |
upstream = UpstreamExpert(ckpt="./model.pt")
|
97 |
```
|
98 |
+
|
99 |
+
Note that we only install `torch` package so far by following the above steps. If your model needs more packages, you can modify the `requirement.txt` to meet your need and install them inside the current conda environment. We will install the packages you list in the `requirement.txt` before initializing the upstream model.
|
100 |
|
101 |
+
2. Validate the upstream model's interface meets the requirements in the [challenge policy](https://superbbenchmark.org/challenge). If everything is correct, you should see the following message: "All submission files validated! Now you can make a submission."
|
102 |
|
103 |
```
|
104 |
python cli.py validate
|
{{cookiecutter.repo_name}}/README.md
CHANGED
@@ -90,13 +90,15 @@ That's it! You're now all set to start pretraining your speech models - see the
|
|
90 |
|
91 |
To make a submission to the [leaderboard](https://superbbenchmark.org/leaderboard), there are 4 main steps:
|
92 |
|
93 |
-
1. Modify `expert.py` and `model.
|
94 |
|
95 |
```python
|
96 |
upstream = UpstreamExpert(ckpt="./model.pt")
|
97 |
```
|
|
|
|
|
98 |
|
99 |
-
2. Validate the upstream model meets the requirements in the [challenge policy](https://superbbenchmark.org/challenge). If everything is correct, you should see the following message: "All submission files validated! Now you can make a submission."
|
100 |
|
101 |
```
|
102 |
python cli.py validate
|
|
|
90 |
|
91 |
To make a submission to the [leaderboard](https://superbbenchmark.org/leaderboard), there are 4 main steps:
|
92 |
|
93 |
+
1. Modify `expert.py` and change `model.pt` so we can initialize an upstream model following the [challenge policy](https://superbbenchmark.org/challenge) by:
|
94 |
|
95 |
```python
|
96 |
upstream = UpstreamExpert(ckpt="./model.pt")
|
97 |
```
|
98 |
+
|
99 |
+
Note that we only install `torch` package so far by following the above steps. If your model needs more packages, you can modify the `requirement.txt` to meet your need and install them inside the current conda environment. We will install the packages you list in the `requirement.txt` before initializing the upstream model.
|
100 |
|
101 |
+
2. Validate the upstream model's interface meets the requirements in the [challenge policy](https://superbbenchmark.org/challenge). If everything is correct, you should see the following message: "All submission files validated! Now you can make a submission."
|
102 |
|
103 |
```
|
104 |
python cli.py validate
|