edit : clip-vit 모델 추가

This commit is contained in:
2025-07-08 17:20:32 +09:00
parent 4c2ea70289
commit 309a91bda6
24 changed files with 1395 additions and 40 deletions

View File

@@ -2,10 +2,11 @@ import paramiko
class CustomSFTPClient():
def __init__(self):
host = "192.168.200.230"
port = 22
id = "fermat"
pw = "1234"
from config import rest_config
host = rest_config.sftp_host
port = rest_config.sftp_port
id = rest_config.sftp_id
pw = rest_config.sftp_pw
self.ssh_client = paramiko.SSHClient()
self.ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())