ts-content-based-recommender
Version:
A TypeScript-based content-based recommender with multilingual support (Japanese & English). Forked from content-based-recommender.
44 lines • 1.07 kB
JavaScript
/**
* サンプル文書データ
* 推薦システムのテストと例示に使用される文書の配列
*/
const sampleDocuments = [
{
id: '1000001',
content: 'Why studying javascript is fun?',
},
{
id: '1000002',
content: 'The trend for javascript in machine learning',
},
{
id: '1000003',
content: 'The most insightful stories about JavaScript',
},
{
id: '1000004',
content: 'Introduction to Machine Learning',
},
{
id: '1000005',
content: 'Machine learning and its application',
},
{
id: '1000006',
content: 'Python vs Javascript, which is better?',
},
{
id: '1000007',
content: 'How Python saved my life?',
},
{
id: '1000008',
content: 'The future of Bitcoin technology',
},
{
id: '1000009',
content: 'Is it possible to use javascript for machine learning?',
},
];
export default sampleDocuments;
//# sourceMappingURL=sample-documents.js.map