ML-AI-experiments icon indicating copy to clipboard operation
ML-AI-experiments copied to clipboard

All my experiments with AI and ML

Results 4 ML-AI-experiments issues
Sort by recently updated
recently updated
newest added

When executing these lines: actuals = scaler.inverse_transform(test_y) or preds_moving = scaler.inverse_transform(preds_moving) I am getting this same error: ValueError: Expected 2D array, got 1D array instead

I think this line of code ``` max_len_eng_sent = max([len(line) for line in eng_sentences]) max_len_fra_sent = max([len(line) for line in fra_sentences]) ``` should be like this ``` max_len_eng_sent = max([len(line)...

--------------------------------------------------------------------------- IndexError Traceback (most recent call last) in () 11 12 # Append '\t' for start of the sentence and '\n' to signify end of the sentence ---> 13 sia_line...

AI/Neural Machine Translation/Neural machine translation - Encoder-Decoder seq2seq model.ipynb Is the above repo implemented using teacher forcing method?