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.
6
6
7
7
Set up a local instance of Jupyter using the following instructions
8
8
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.
10
10
11
- ```
12
- python3 -m venv env
13
- ```
11
+ ``` json
12
+ {
13
+ "username" : " my_username" ,
14
+ "password" : " my_password"
15
+ }
16
+ ```
14
17
15
- 2 . Activate it
18
+ 2 . Set up a virtual environment called `env`
16
19
17
- ```
18
- source env/bin/activate
19
- ```
20
+ ```bash
21
+ python3 -m venv env
22
+ ```
20
23
21
- 3 . Install the required dependencies for your chosen Jupyter notebook
24
+ 3 . Activate it
22
25
23
- ```
24
- pip install -r requirements.txt
25
- ```
26
+ ```bash
27
+ source env/bin/activate
28
+ ```
26
29
27
- 4 . Launch Jupyter
30
+ 4 . Install the required dependencies for your chosen Jupyter notebook
28
31
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