Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import os
|
| 2 |
import streamlit as st
|
| 3 |
import torch
|
| 4 |
-
|
| 5 |
|
| 6 |
def get_device_map() -> str:
|
| 7 |
return 'cuda' if torch.cuda.is_available() else 'cpu'
|
|
|
|
| 1 |
import os
|
| 2 |
import streamlit as st
|
| 3 |
import torch
|
| 4 |
+
import pandas as pd
|
| 5 |
|
| 6 |
def get_device_map() -> str:
|
| 7 |
return 'cuda' if torch.cuda.is_available() else 'cpu'
|