This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +25
-16
lines changed
Machine Learning/Class Assigment Objectives Expand file tree Collapse file tree 1 file changed +25
-16
lines changed Original file line number Diff line number Diff line change @@ -6,26 +6,35 @@ choose which loss function.
66
77Set up a local instance of Jupyter using the following instructions
88
9- 1 . Set up a virtual environment called ` env `
9+ 1 . Create file ` credentials.json ` containing the username and password to access your Elasticsearch instance.
1010
11- ```
12- python3 -m venv env
13- ```
11+ ``` json
12+ {
13+ "username" : " my_username" ,
14+ "password" : " my_password"
15+ }
16+ ```
1417
15- 2 . Activate it
18+ 2 . Set up a virtual environment called `env`
1619
17- ```
18- source env/bin/activate
19- ```
20+ ```bash
21+ python3 -m venv env
22+ ```
2023
21- 3 . Install the required dependencies for your chosen Jupyter notebook
24+ 3 . Activate it
2225
23- ```
24- pip install -r requirements.txt
25- ```
26+ ```bash
27+ source env/bin/activate
28+ ```
2629
27- 4 . Launch Jupyter
30+ 4 . Install the required dependencies for your chosen Jupyter notebook
2831
29- ```
30- jupyter notebook
31- ```
32+ ```bash
33+ pip install -r requirements.txt
34+ ```
35+
36+ 5 . Launch Jupyter
37+
38+ ```bash
39+ jupyter notebook
40+ ```
You can’t perform that action at this time.
0 commit comments