Translation

Files in /eval, /extra, & /learn - comments translated from Japanese to English
This commit is contained in:
FireFather
2020-06-28 03:12:55 +02:00
parent 2f8c692caa
commit aea08de018
54 changed files with 1903 additions and 1905 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
// 入力特徴量のインデックスリストの定義
// Definition of index list of input features
#ifndef _NNUE_FEATURES_INDEX_LIST_H_
#define _NNUE_FEATURES_INDEX_LIST_H_
@@ -14,7 +14,7 @@ namespace NNUE {
namespace Features {
// 特徴量のインデックスリストに使うクラステンプレート
// Class template used for feature index list
template <typename T, std::size_t MaxSize>
class ValueList {
public:
@@ -39,7 +39,7 @@ class ValueList {
std::size_t size_ = 0;
};
// 特徴量のインデックスリストの型
//Type of feature index list
class IndexList
: public ValueList<IndexType, RawFeatures::kMaxActiveDimensions> {
};
@@ -52,4 +52,4 @@ class IndexList
#endif // defined(EVAL_NNUE)
#endif
#endif