✕ Clear all filters
11 articles

📰 Dev.to · drake

11 articles · Updated every 3 hours · View all reads

All Articles 77,335Blog Posts 103,264Tech Tutorials 18,851Research Papers 16,883News 13,373 ⚡ AI Lessons
faster whisper从多媒体语音材料中抽取出文本-4
Dev.to · drake 6mo ago
faster whisper从多媒体语音材料中抽取出文本-4
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper 转录完成后立即删除原始 .mp3 文件,仅保留 .txt """ import os import...
faster whisper从多媒体语音材料中抽取出文本-3
Dev.to · drake 6mo ago
faster whisper从多媒体语音材料中抽取出文本-3
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper """ import os import logging import sys from pathlib...
python 连接 bittensor的子网
Dev.to · drake 7mo ago
python 连接 bittensor的子网
安装依赖 # 使用 pip 安装 pip install bittensor # 或安装最新开发版 pip install...
python爬虫工程师,选 React Native 还是 Flutter ?
Dev.to · drake 7mo ago
python爬虫工程师,选 React Native 还是 Flutter ?
作为 Python 爬虫工程师,我建议你考虑以下几个方向: 推荐方案排序 1. Flutter(最推荐) 为什么适合你: Dart...
Sharpe Ratio— Python 实现(from gpt)
Dev.to · drake 7mo ago
Sharpe Ratio— Python 实现(from gpt)
from typing import List, Dict, Iterable, Tuple import math def sharpe_from_history( ...
Profit Factor — Python 实现(from gpt)
Dev.to · drake 7mo ago
Profit Factor — Python 实现(from gpt)
from typing import Iterable, Dict, List, Union def profit_factor_from_trades_and_positions( ...
调用Deepseek API
Dev.to · drake 8mo ago
调用Deepseek API
# Please install OpenAI SDK first: `pip3 install openai` import os from openai import OpenAI client...