-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to fix rendering issue with README.md
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ The following instructions are examples; adapt them for your needs. | |
|
||
Note: Project uses CPU-based training by default. Additional dependencies (Tensorflow compatible CUDA libraries) are required to use GPU training. | ||
|
||
###Linux: | ||
### Linux: | ||
|
||
~~~ | ||
git clone [email protected]:thtroyer/simple-text-generator.git | ||
|
@@ -22,7 +22,7 @@ source env/bin/activate | |
python3 -m pip install -r requirements.txt | ||
~~~ | ||
|
||
###Windows: | ||
### Windows: | ||
Clone repository | ||
|
||
Run the following in cmd after navigating to root of cloned directory: | ||
|
@@ -40,15 +40,15 @@ Once a project is created, run the project by using `train.py`. The trained mod | |
|
||
If you encounter errors when attempting to train, make sure your virtual environment is activated. | ||
|
||
###Linux: | ||
### Linux: | ||
~~~ | ||
source env/bin/activate | ||
python3 simple-text-generator-ui.py | ||
python3 train.py | ||
~~~ | ||
|
||
###Windows (cmd): | ||
### Windows (cmd): | ||
~~~ | ||
.\env\Scripts\activate | ||
py simple-text-generator-ui.py | ||
|