https://github.com/prinorange/ts-ngcf
This is the implementation for NGCF recommendation model by TypeScript
https://github.com/prinorange/ts-ngcf
artificial-neural-networks recommendation recommendation-system
Last synced: 12 months ago
JSON representation
This is the implementation for NGCF recommendation model by TypeScript
- Host: GitHub
- URL: https://github.com/prinorange/ts-ngcf
- Owner: PrinOrange
- Created: 2025-04-10T03:27:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-10T14:10:19.000Z (about 1 year ago)
- Last Synced: 2025-04-12T18:18:52.975Z (about 1 year ago)
- Topics: artificial-neural-networks, recommendation, recommendation-system
- Language: TypeScript
- Homepage:
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TS-NGCF
This is the implementation for NGCF recommendation model by TypeScript, based on paper [Neural Graph Collaborative Filtering](https://hexiangnan.github.io/papers/sigir19-NGCF.pdf). Before running this project, please install Bun.
Then install dependencies.
Here is my [reading record and thoughts](https://www.yuque.com/yuqueyonghuwznrio/zt8wa9/nqbokcb5cr82e3cl#%20%E3%80%8ANGCF%E3%80%8B).
```bash
bun install
```
And, run this command in terminal.
```bash
bun run start
```
Or, you could build to single js file and run with node.js
```bash
bun run build:js
node ./out/main.js
```