Reinforcement Learning
stable-baselines3
English
sales_conversion_rl
sales
conversation-analysis
conversion-prediction
ppo
turn-by-turn-analysis
Instructions to use DeepMostInnovations/sales-conversion-model-reinf-learning with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- stable-baselines3
How to use DeepMostInnovations/sales-conversion-model-reinf-learning with stable-baselines3:
from huggingface_sb3 import load_from_hub checkpoint = load_from_hub( repo_id="DeepMostInnovations/sales-conversion-model-reinf-learning", filename="{MODEL FILENAME}.zip", ) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -69,7 +69,7 @@ cd sales-conversion-model-reinf-learning
|
|
| 69 |
Important to use python 3.10 version for inference case, otherwise it will cause layer dim errors
|
| 70 |
|
| 71 |
```bash
|
| 72 |
-
conda create -n salespy10 pip python=3.
|
| 73 |
conda activate salespy110
|
| 74 |
pip install azure-openai stable-baselines3 numpy torch huggingface_hub
|
| 75 |
python sales_inference.py --model_path sales_model.zip --conversation_json sample_conv_generated.json --azure_api_key "api_key" --azure_endpoint "https://resource_name.openai.azure.com/" --azure_deployment_name "text-embedding-3-large" --azure_api_version "2023-12-01-preview" --embedding_dim 3072
|
|
|
|
| 69 |
Important to use python 3.10 version for inference case, otherwise it will cause layer dim errors
|
| 70 |
|
| 71 |
```bash
|
| 72 |
+
conda create -n salespy10 pip python=3.10
|
| 73 |
conda activate salespy110
|
| 74 |
pip install azure-openai stable-baselines3 numpy torch huggingface_hub
|
| 75 |
python sales_inference.py --model_path sales_model.zip --conversation_json sample_conv_generated.json --azure_api_key "api_key" --azure_endpoint "https://resource_name.openai.azure.com/" --azure_deployment_name "text-embedding-3-large" --azure_api_version "2023-12-01-preview" --embedding_dim 3072
|