An open API service indexing awesome lists of open source software.

https://github.com/rmuraix/cs231n

My personal notebooks (in Japanese) for CS231n - Deep Learning for Computer Vision
https://github.com/rmuraix/cs231n

computer-vision cs231n deep-learning

Last synced: 6 months ago
JSON representation

My personal notebooks (in Japanese) for CS231n - Deep Learning for Computer Vision

Awesome Lists containing this project

README

          

# CS231n

## About

My personal notebooks for [CS231n](https://cs231n.stanford.edu/).

## Running Locally

If you have Docker installed, you can use devcontainer. Otherwise, the following are required.

- OS that supports shell scripts
- Python3
- [Poetry](https://python-poetry.org/)

```sh
# Install dependencies
poetry install

# Format code with ruff
poetry run ruff format .

# Install pre-commit to check formatting
# and remove metadata from *.ipynb When you commit.
pre-commit install
```

## Course Materials

To see the course materials translated into Japanese, execute the following commands.

```sh
cd docs
docker compose up
```

Open http://localhost:3000

## References

- [Course page](https://cs231n.stanford.edu/index.html)
- [Assignments](https://cs231n.stanford.edu/assignments.html)

## Contributing

Your contribution is always welcome. Please read [Contributing Guide](https://github.com/rmuraix/.github/blob/main/.github/CONTRIBUTING.md).