摘要: from dataclasses import dataclass import os import pytz from binance.client import Client import pandas as pd from loguru import logger import warning 阅读全文
posted @ 2025-09-04 08:34 Ycsuuu 阅读(25) 评论(0) 推荐(0)
摘要: import requests import pandas as pd import pytz from dataclasses import dataclass from typing import List, Optional import os from loguru import logge 阅读全文
posted @ 2025-08-05 15:06 Ycsuuu 阅读(21) 评论(0) 推荐(0)
摘要: C:\Users\123\AppData\Local\Programs\Python\Python312\python.exe C:\Users\123\Desktop\new_binance\main.py 2025-11-25 03:00:00 137.31 137.73 136.68 137. 阅读全文
posted @ 2025-07-20 23:26 Ycsuuu 阅读(20) 评论(0) 推荐(0)
摘要: import pandas as pd from loguru import logger import requests import datetime import time # 配置loguru日志 logger.add("kline_processor.log", rotation="5 M 阅读全文
posted @ 2025-07-13 21:45 Ycsuuu 阅读(20) 评论(0) 推荐(0)
摘要: CNN #coding:utf8 import torch import torch.nn as nn import numpy as np """ 使用pytorch实现CNN 手动实现CNN 对比 """ #一个二维卷积 class TorchCNN(nn.Module): def __init 阅读全文
posted @ 2024-12-24 09:56 Ycsuuu 阅读(96) 评论(0) 推荐(0)
摘要: 模型文件下载 git clone https://huggingface.co/google-bert/bert-base-chinese 查看config.json配置文件 { "architectures": [ "BertForMaskedLM" ], "attention_probs_dro 阅读全文
posted @ 2024-12-17 09:15 Ycsuuu 阅读(79) 评论(0) 推荐(0)
摘要: import requests import pandas as pd from datetime import datetime, timedelta from loguru import logger import pytz # 配置loguru日志 logger.add("kline_proc 阅读全文
posted @ 2024-12-13 14:22 Ycsuuu 阅读(80) 评论(0) 推荐(0)