Skip to content

Commit

Permalink
fix: solve the conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
LongxingTan committed Sep 1, 2023
1 parent b6381e4 commit b4d211d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ x_train = (
np.random.rand(1, predict_length, n_decoder_feature), # decoder_feature: (batch, predict_length, decoder_features)
)
y_train = np.random.rand(1, predict_length, 1) # target: (batch, predict_length, 1)

x_valid = (
np.random.rand(1, train_length, 1),
np.random.rand(1, train_length, n_encoder_feature),
Expand Down
7 changes: 4 additions & 3 deletions docs/source/quick-start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,19 @@ Train your first model
---------------------------

1. Prepare the data
~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~~~
After you prepare the raw data, maybe you need preprocess the data.


2. Train the model
~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~


3. Evaluate the model
~~~~~~~~~~~~~~~~~~~~~~~

4. Serve the model
~~~~~~~~~~~~~~~~~~~


.. currentmodule:: tfts

0 comments on commit b4d211d

Please sign in to comment.