phase 2 - task 0a

This commit is contained in:
Kaushik Narayan R 2023-09-24 00:46:28 -07:00
parent bb25308413
commit ccd0425cfa
6 changed files with 640 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
Datasets/ Datasets/
Other code/ Other code/
*.zip *.zip
*.env

View File

@ -1,4 +1,4 @@
Copyright (c) 2012-2023 Scott Chacon and others Copyright (c) 2023 Kaushik Narayan R and others
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View File

@ -8,9 +8,10 @@ Getting started: PyTorch, Caltech101 dataset, ResNet50 and similarity measures
- Histogram of oriented gradients (HOG) - Cosine similarity - Histogram of oriented gradients (HOG) - Cosine similarity
- ResNet50 (avgpool, layer3, fc) - unsatisfactory results for all, simply used euclidean - ResNet50 (avgpool, layer3, fc) - unsatisfactory results for all, simply used euclidean
## Requirements ## Requirements and dependencies
Install packages from requirements.txt (might not be complete) - Requires MongoDB server (local or otherwise)
- Install packages from requirements.txt
## Task 1 - task_1.ipynb ## Task 1 - task_1.ipynb

View File

@ -1 +1,8 @@
# Phase 2 # Phase 2
- Refer phase2_F23.pdf for problem description
## Requirements and dependencies
- Requires MongoDB server (local or otherwise)
- Install packages from requirements.txt

13
Phase 2/requirements.txt Normal file
View File

@ -0,0 +1,13 @@
numpy
scipy
scikit-learn
scikit-image
opencv-python
matplotlib
torch
torchvision
pymongo[srv]
ipython
notebook
ipykernel
python-dotenv

614
Phase 2/task_0.ipynb Normal file

File diff suppressed because one or more lines are too long