ts-content-based-recommender
Version:
A TypeScript-based content-based recommender with multilingual support (Japanese & English). Forked from content-based-recommender.
44 lines • 1.09 kB
JavaScript
/**
* サンプルターゲット文書データ
* 双方向学習のテストに使用される文書の配列
*/
const sampleTargetDocuments = [
{
id: '1000010',
content: 'Why studying javascript is fun?',
},
{
id: '1000011',
content: 'The trend for javascript in machine learning',
},
{
id: '1000012',
content: 'The most insightful stories about JavaScript',
},
{
id: '1000013',
content: 'Introduction to Machine Learning',
},
{
id: '1000014',
content: 'Machine learning and its application',
},
{
id: '1000015',
content: 'Python vs Javascript, which is better?',
},
{
id: '1000016',
content: 'How Python saved my life?',
},
{
id: '1000017',
content: 'The future of Bitcoin technology',
},
{
id: '1000018',
content: 'Is it possible to use javascript for machine learning?',
},
];
export default sampleTargetDocuments;
//# sourceMappingURL=sample-target-documents.js.map