Skip to content
New issue

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

Issue 925: Fix broken example links #24

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,37 +155,31 @@ export default new Vuex.Store({
title: 'Using node streams',
description: 'Train neural network using streams',
link:
'//github.com/BrainJS/brain.js/blob/master/examples/javascript/stream-example.js',
},
{
title: 'Using node streams',
description: 'Train neural network using streams',
link:
'//github.com/BrainJS/brain.js/blob/master/examples/javascript/stream-example.js',
'//github.com/BrainJS/brain.js-examples/blob/main/src/stream-example.ts',
},
{
title: 'Forecasting',
description: 'Predict next number, and forecast numbers',
link:
'//github.com/BrainJS/brain.js/blob/master/examples/javascript/predict-numbers.js',
'https://github.com/BrainJS/brain.js-examples/blob/main/src/predict-numbers.ts',
},
{
title: 'Maths',
description: 'Learning math using a recurrent neural network',
link:
'//github.com/BrainJS/brain.js/blob/master/examples/javascript/learn-math.js',
'https://github.com/BrainJS/brain.js-examples/blob/main/src/learn-math.ts',
},
{
title: 'Cross Validate',
description: 'Using cross validation with a feed forward net ',
link:
'//github.com/BrainJS/brain.js/blob/master/examples/javascript/cross-validate.js',
'https://github.com/BrainJS/brain.js-examples/blob/main/src/learn-math.ts',
},
{
title: 'GPU powered AI',
description: 'using the gpu in a browser',
link:
'https://github.com/BrainJS/brain.js/blob/master/examples/javascript/gpu.html',
'https://github.com/BrainJS/brain.js-examples/blob/main/src/feed-forward-gpu-xor.ts',
},
{
title: 'Cryotherapy Success Rate Prediction',
Expand Down