Skip to content

Commit

Permalink
Update prepare_locally.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyaoi committed Feb 14, 2022
1 parent 6251985 commit 2368f0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/en/usage/manual/publish/prepare_locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ from mlpm.solver import Solver
class SampleSolver(Solver):
def __init__(self, toml_file=None):
super().__init__(toml_file)
# Do you Init Work here
# Do your initialisation here
self.classifer = get_classifier()
self.ready()
def infer(self, data):
Expand Down Expand Up @@ -67,4 +67,4 @@ After modifying everything, you can quickly check if the following requirements

* If additional software is needed, they should be noted in ```setup.sh```. In this file you can write commands like ```apt-get install xxx``` to install additional dependencies that cannot be installed by ```pip```.

* Required request parameters and the meaning of output should be written in the ```README.md``` file.
* Required request parameters and the meaning of output should be written in the ```README.md``` file.

0 comments on commit 2368f0e

Please sign in to comment.