-
Notifications
You must be signed in to change notification settings - Fork 0
Lab05 #5
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
Lab05 #5
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR sets up the Lab05 environment by introducing required dependencies and a comprehensive .gitignore to cover Python, Flask, and other development artifacts.
- Added a requirements.txt with dependencies such as torch, torchvision, facenet-pytorch, Pillow, numpy, deeplake, and flask.
- Introduced a detailed .gitignore file covering common Python temporary files and build artifacts.
Reviewed Changes
Copilot reviewed 2 out of 6 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| lab05/requirements.txt | Added required Python dependencies without version pins. |
| lab05/.gitignore | Added a comprehensive .gitignore covering various Python artifacts. |
| torch | ||
| torchvision | ||
| facenet-pytorch | ||
| Pillow | ||
| numpy | ||
| deeplake | ||
| flask No newline at end of file |
Copilot
AI
Jun 20, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependencies in requirements.txt are unpinned, which may result in unexpected behavior when newer versions are released. Consider pinning specific versions to enhance reproducibility.
| torch | |
| torchvision | |
| facenet-pytorch | |
| Pillow | |
| numpy | |
| deeplake | |
| flask | |
| torch==2.0.1 | |
| torchvision==0.15.2 | |
| facenet-pytorch==2.5.2 | |
| Pillow==9.5.0 | |
| numpy==1.24.3 | |
| deeplake==3.6.7 | |
| flask==2.3.3 |
No description provided.