Update README.md
Browse files
README.md
CHANGED
@@ -95,13 +95,13 @@ cd otter-knowledge
|
|
95 |
```
|
96 |
- Run the inference for Proteins:
|
97 |
|
98 |
-
*Replace test_data with the path to a CSV file containing the protein sequences,
|
99 |
```python
|
100 |
-
python inference --test test_data --sequence_column name_of_the_column --model_path ibm/otter_ubc_classifier
|
101 |
```
|
102 |
- Run the inference for Drugs:
|
103 |
|
104 |
-
*Replace test_data with the path to a CSV file containing the Drug SMILES,
|
105 |
```python
|
106 |
-
python inference --test test_data --sequence_column name_of_the_column input_type Drug --relation_name smiles --model_path ibm/otter_ubc_classifier
|
107 |
```
|
|
|
95 |
```
|
96 |
- Run the inference for Proteins:
|
97 |
|
98 |
+
*Replace test_data with the path to a CSV file containing the protein sequences, name_of_the_column with the name of the column of the protein sequence in the CSV and output_path with the filename of the JSON file to be created with the embeddings.*
|
99 |
```python
|
100 |
+
python inference.py --test test_data --sequence_column name_of_the_column --model_path ibm/otter_ubc_classifier --output_path output_path
|
101 |
```
|
102 |
- Run the inference for Drugs:
|
103 |
|
104 |
+
*Replace test_data with the path to a CSV file containing the Drug SMILES, name_of_the_column with the name of the column of the SMILES in the CSV and output_path with the filename of the JSON file to be created with the embeddings.*.*
|
105 |
```python
|
106 |
+
python inference.py --test test_data --sequence_column name_of_the_column input_type Drug --relation_name smiles --model_path ibm/otter_ubc_classifier --output_path output_path
|
107 |
```
|