muskangoyal06 commited on
Commit
1149444
·
verified ·
1 Parent(s): 47b7815

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -2,6 +2,10 @@ import streamlit as st
2
  from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
3
  import requests
4
  import daal4py as d4p # Intel DAAL
 
 
 
 
5
 
6
  # Alpha Vantage API Setup (replace with your API key)
7
  ALPHA_VANTAGE_API_KEY = "your_alpha_vantage_api_key"
 
2
  from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
3
  import requests
4
  import daal4py as d4p # Intel DAAL
5
+ import numpy as np
6
+ import dpctl
7
+ from sklearnex import patch_sklearn, config_context
8
+ patch_sklearn()
9
 
10
  # Alpha Vantage API Setup (replace with your API key)
11
  ALPHA_VANTAGE_API_KEY = "your_alpha_vantage_api_key"