We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In train_FNN.py ,Different shape cannot stack, why HCF_data = np.array([q1_word_count, q2_word_count, word_count_diff, word_overlap, uni_BLEU, bi_BLEU, BLEU2, char_bigram_overlap, char_trigram_overlap, char_4gram_overlap]) Directly, X = np.stack((q1_data, q2_data, HCF_data), axis=1) right this? tell me why?
HCF_data = np.array([q1_word_count, q2_word_count, word_count_diff, word_overlap, uni_BLEU, bi_BLEU, BLEU2, char_bigram_overlap, char_trigram_overlap, char_4gram_overlap])
X = np.stack((q1_data, q2_data, HCF_data), axis=1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In train_FNN.py ,Different shape cannot stack, why
HCF_data = np.array([q1_word_count, q2_word_count, word_count_diff, word_overlap, uni_BLEU, bi_BLEU, BLEU2, char_bigram_overlap, char_trigram_overlap, char_4gram_overlap])
Directly,
X = np.stack((q1_data, q2_data, HCF_data), axis=1)
right this?tell me why?
The text was updated successfully, but these errors were encountered: