Spaces:
Running
on
Zero
Running
on
Zero
Update smart_breed_matcher.py
Browse files- smart_breed_matcher.py +2 -2
smart_breed_matcher.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
|
2 |
-
from sentence_transformers import SentenceTransformer, util
|
3 |
import torch
|
4 |
import numpy as np
|
5 |
from typing import List, Dict, Tuple, Optional
|
6 |
from dataclasses import dataclass
|
7 |
from breed_health_info import breed_health_info
|
8 |
from breed_noise_info import breed_noise_info
|
|
|
|
|
9 |
|
10 |
class SmartBreedMatcher:
|
11 |
def __init__(self, dog_data: List[Tuple]):
|
|
|
|
|
|
|
1 |
import torch
|
2 |
import numpy as np
|
3 |
from typing import List, Dict, Tuple, Optional
|
4 |
from dataclasses import dataclass
|
5 |
from breed_health_info import breed_health_info
|
6 |
from breed_noise_info import breed_noise_info
|
7 |
+
from scoring_calculation_system import UserPreferences
|
8 |
+
from sentence_transformers import SentenceTransformer, util
|
9 |
|
10 |
class SmartBreedMatcher:
|
11 |
def __init__(self, dog_data: List[Tuple]):
|