Skip to content

Commit 2fe1660

Browse files
Remove requirements.txt
1 parent 6122ba5 commit 2fe1660

File tree

4 files changed

+8
-183
lines changed

4 files changed

+8
-183
lines changed

FAQ.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ This document is a set of quick questions and generally useful FAQs.
1414

1515
4. Active the virtual environment `source practicaldl/bin/activate`
1616

17-
5. Install all the requirements `pip install -r requirements.txt`
17+
5. When we want to exit, use the deactivate command `deactivate`
1818

19-
6. When we want to exit, use the deactivate command `deactivate`
19+
6. Use pip to install the necessary packages (listed in each chapter's README.md) in the virtual environment only.
2020

2121
Within the `virtualenv` environment, please install the following:
2222

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Table of contents
1212
* [Book Description](#book-description)
1313
* [Chapter List](#chapter-list)
1414
* [How to Use this repository](#how-to-use-this-repository)
15-
* [Requirements](#requirements)
1615
* [Environment](#environment)
1716
* [Bug Reporting](#bug-reporting)
1817
* [About the Authors](#about-the-authors)
@@ -110,9 +109,6 @@ First off, welcome! We are happy that you have decided to use the book and the c
110109

111110
Please follow [these](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb#scrollTo=WzIRIt9d2huC) instructions to load the GitHub repo on Google Colab. Keep in mind that you will need access to your own Google Drive as we will be using data from a local system.
112111

113-
### Requirements
114-
Some chapters will require certian frameworks like TensorFlow, and Keras. Please see the [Installation](https://github.com/practicaldl/Practical-Deep-Learning-Book/blob/master/FAQ.md#installation) section in the [FAQ](https://github.com/practicaldl/Practical-Deep-Learning-Book/blob/master/FAQ.md) document.
115-
116112
### Environment
117113
We will use a `virtualenv` by the name of `practicaldl` throughout the book. The `requirements.txt` for this `virtualenv` are in the root directory. Help and instructions to install `virtualenv` are in the [Installation](https://github.com/practicaldl/Practical-Deep-Learning-Book/blob/master/FAQ.md#installation) section in the [FAQ](https://github.com/practicaldl/Practical-Deep-Learning-Book/blob/master/FAQ.md) document.
118114

code/chapter-4/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Like Google Reverse Image Search, we explore how one can use embeddings — a contextual representation of an image to find similar images in under ten lines. And then the fun starts when we explore different strategies and algorithms to speed this up at scale, from thousands to several million images, and making them searchable in microseconds.
44

5+
## Setup
6+
7+
Run the following command prior to running the scripts in this directory:
8+
9+
`$ pip install annoy -U`
10+
511
## Code
612

713
Go through the code in the following order:

requirements.txt

Lines changed: 0 additions & 177 deletions
This file was deleted.

0 commit comments

Comments
 (0)