📰 Dev.to · drake
Articles from Dev.to · drake · 11 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (9515)
ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog

Dev.to · drake
2mo ago
加密货币协整检验算法
@staticmethod def _calculate_cointegration_params(base_prices: pd.Series, alt_prices:...

Dev.to · drake
4mo ago
使用 faster-whisper批量转录的python脚本
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper 转录完成后立即删除原始 .mp3 文件,仅保留 .txt """ import os import...

Dev.to · drake
4mo ago
NVIDIA GeForce GTX 750 Ti 跑 faster-whisper
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper 转录完成后立即删除原始 .mp3 文件,仅保留 .txt """ import os import...

Dev.to · drake
5mo ago
openai-whisper从多媒体抽取文本(windows GPU 版本)
GPU 型号 NVIDIA GeForce GTX 750 Ti 依赖 python 三方包 pip uninstall torch...

Dev.to · drake
5mo ago
faster whisper从多媒体语音材料中抽取出文本-4
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper 转录完成后立即删除原始 .mp3 文件,仅保留 .txt """ import os import...

Dev.to · drake
5mo ago
faster whisper从多媒体语音材料中抽取出文本-3
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper """ import os import logging import sys from pathlib...

Dev.to · drake
5mo ago
python 连接 bittensor的子网
安装依赖 # 使用 pip 安装 pip install bittensor # 或安装最新开发版 pip install...

Dev.to · drake
5mo ago
python爬虫工程师,选 React Native 还是 Flutter ?
作为 Python 爬虫工程师,我建议你考虑以下几个方向: 推荐方案排序 1. Flutter(最推荐) 为什么适合你: Dart...

Dev.to · drake
5mo ago
Sharpe Ratio— Python 实现(from gpt)
from typing import List, Dict, Iterable, Tuple import math def sharpe_from_history( ...

Dev.to · drake
5mo ago
Profit Factor — Python 实现(from gpt)
from typing import Iterable, Dict, List, Union def profit_factor_from_trades_and_positions( ...

Dev.to · drake
6mo ago
调用Deepseek API
# Please install OpenAI SDK first: `pip3 install openai` import os from openai import OpenAI client...
DeepCamp AI