11 articles

📰 Dev.to · drake

Articles from Dev.to · drake · 11 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (9363) ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog
faster whisper从多媒体语音材料中抽取出文本-4
Dev.to · drake 5mo ago
faster whisper从多媒体语音材料中抽取出文本-4
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper 转录完成后立即删除原始 .mp3 文件,仅保留 .txt """ import os import...
faster whisper从多媒体语音材料中抽取出文本-3
Dev.to · drake 5mo ago
faster whisper从多媒体语音材料中抽取出文本-3
""" 批量转录当前目录下的 .mp3 文件,使用 faster-whisper """ import os import logging import sys from pathlib...
python 连接 bittensor的子网
Dev.to · drake 5mo ago
python 连接 bittensor的子网
安装依赖 # 使用 pip 安装 pip install bittensor # 或安装最新开发版 pip install...
python爬虫工程师,选 React Native 还是 Flutter ?
Dev.to · drake 5mo ago
python爬虫工程师,选 React Native 还是 Flutter ?
作为 Python 爬虫工程师,我建议你考虑以下几个方向: 推荐方案排序 1. Flutter(最推荐) 为什么适合你: Dart...
Sharpe Ratio— Python 实现(from gpt)
Dev.to · drake 5mo 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 5mo 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 6mo ago
调用Deepseek API
# Please install OpenAI SDK first: `pip3 install openai` import os from openai import OpenAI client...