Spaces:
Sleeping
Sleeping
Update appStore/identifier.py
Browse files- appStore/identifier.py +17 -0
appStore/identifier.py
CHANGED
@@ -1,2 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Download model from HF Hub
|
2 |
vg_model = SetFitModel.from_pretrained("leavoigt/vulnerable_groups")
|
|
|
1 |
+
# set path
|
2 |
+
import glob, os, sys;
|
3 |
+
sys.path.append('../utils')
|
4 |
+
|
5 |
+
#import needed libraries
|
6 |
+
import seaborn as sns
|
7 |
+
import matplotlib.pyplot as plt
|
8 |
+
import numpy as np
|
9 |
+
import pandas as pd
|
10 |
+
import streamlit as st
|
11 |
+
from utils.target_classifier import load_targetClassifier, target_classification
|
12 |
+
from utils.config import get_classifier_params
|
13 |
+
|
14 |
+
# Declare all the necessary variables
|
15 |
+
classifier_identifier = 'target'
|
16 |
+
params = get_classifier_params(classifier_identifier)
|
17 |
+
|
18 |
# Download model from HF Hub
|
19 |
vg_model = SetFitModel.from_pretrained("leavoigt/vulnerable_groups")
|