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
- Host: GitHub
- URL: https://github.com/rmuraix/cs231n
- Owner: rmuraix
- License: mit
- Created: 2024-04-24T09:57:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-09T06:04:00.000Z (about 1 year ago)
- Last Synced: 2025-06-09T07:20:49.094Z (about 1 year ago)
- Topics: computer-vision, cs231n, deep-learning
- Language: Jupyter Notebook
- Homepage: https://lab.rmurai.com/cs231n/
- Size: 8.08 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).