Skip to content

Commit 86bd10f

Browse files
author
Fahimeh Ebrahimi
committed
Restructured the folders and updated readme
1 parent efc6825 commit 86bd10f

18 files changed

+211
-14
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,19 @@ pip install -e .
2424
```
2525

2626
## Getting Started
27-
Follow the code in `notebooks` folder.\
28-
For EIO-LCA use: `notebooks/eio/demo.ipynb`\
29-
for process LCA use: `notebooks/process/generate_ranked_preds.ipynb`
27+
For EIO-LCA use: `caml/demo.ipynb`\
28+
for process LCA use: `flamingo/process/generate_ranked_preds.ipynb`
3029

3130
## Parakeet
31+
Create+activate conda environment with Python 3.11.7.
32+
```
33+
conda create --name parakeetenv python=3.11.7
34+
conda activate parakeetenv
35+
```
36+
Install the packages
37+
```
38+
pip install -r parakeet/requirements.txt
39+
```
3240
For running the code, you must have an AWS account to call bedrock.
3341

3442
Create a `User` in your AWS account with your own key `id` and `key` following these steps
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

notebooks/eio/fine_tune.ipynb renamed to caml/fine_tune.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@
2929
},
3030
{
3131
"cell_type": "code",
32-
"execution_count": 2,
32+
"execution_count": null,
3333
"metadata": {},
3434
"outputs": [],
3535
"source": [
36-
"annotation_df = pd.read_pickle('../data/6k_grocery_products_annotations.pkl')"
36+
"annotation_df = pd.read_pickle('data/6k_grocery_products_annotations.pkl')"
3737
]
3838
},
3939
{
4040
"cell_type": "code",
41-
"execution_count": 3,
41+
"execution_count": null,
4242
"metadata": {},
4343
"outputs": [],
4444
"source": [
45-
"naics_df = pd.read_pickle('../data/naics_codes.pkl')"
45+
"naics_df = pd.read_pickle('data/naics_codes.pkl')"
4646
]
4747
},
4848
{

0 commit comments

Comments
 (0)