Skip to content
Merged
Show file tree
Hide file tree
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: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Bug report
about: Something isn't working
labels: bug
---

**Describe the bug**
A clear description of what the bug is.

**To reproduce**
Steps to reproduce the behavior.

**Expected behavior**
What you expected to happen.

**Browser / OS**
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature request
about: Suggest an idea
labels: enhancement
---

**What problem does this solve?**

**Describe the solution you'd like**

**Alternatives considered**
6 changes: 6 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## What does this PR do?

## Testing

- [ ] Tests pass (`npm test`)
- [ ] Linting passes (`npm run lint`)
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint --if-present
- run: npm test
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Added
- Initial public release
- In-browser CNN and dense network training on MNIST, Fashion-MNIST, and CIFAR-10
- Real-time training visualization
17 changes: 17 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Contributing

## Development setup

1. Install dependencies: `npm install` or `pnpm install`
2. Start dev server: `npm run dev`
3. Run tests: `npm test`

## Pull requests

- Open an issue first for significant changes
- Keep PRs focused — one feature or fix per PR
- Ensure tests pass before submitting

## Code style

This project uses ESLint. Run `npm run lint` before submitting.
7 changes: 7 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Security Policy

## Reporting a Vulnerability

Please report security vulnerabilities by opening a GitHub issue with the label `security`.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep vulnerability reporting channel private

The policy currently tells reporters to open a GitHub issue for security vulnerabilities, which makes disclosures public by default and can expose exploit details before a fix is available. This creates avoidable risk for users and maintainers; security reports should be routed through a private channel (for example, GitHub private vulnerability reporting/security advisories or a dedicated security email).

Useful? React with 👍 / 👎.


This project runs entirely in the browser — there is no server-side component or data collection.
Loading