上一页 1 ··· 659 660 661 662 663 664 665 666 667 ··· 851 下一页
摘要: .\marker\marker\models.py # 从 marker.cleaners.equations 模块中导入 load_texify_model 函数 from marker.cleaners.equations import load_texify_model # 从 marker. 阅读全文
posted @ 2024-03-08 17:03 绝不原创的飞龙 阅读(149) 评论(0) 推荐(0)
摘要: .\marker\benchmark.py import argparse import tempfile import time from collections import defaultdict from tqdm import tqdm from marker.convert import 阅读全文
posted @ 2024-03-08 16:58 绝不原创的飞龙 阅读(214) 评论(0) 推荐(0)
摘要: RotaryEmbedding # 旋转位置嵌入,应用于每一层 Q 和 K class RotaryEmbedding(nn.Module): def __init__(self, dim, rope_ratio=1, original_impl=False, device=None, dtype= 阅读全文
posted @ 2024-03-07 16:58 绝不原创的飞龙 阅读(146) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\teambuilder\teambuilder_pokemon.py """This module defines the TeambuilderPokemon class, which is used as an intermediate format t 阅读全文
posted @ 2024-03-07 15:02 绝不原创的飞龙 阅读(39) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\player\player.py """This module defines a base class for players. """ import asyncio import random from abc import ABC, abstractm 阅读全文
posted @ 2024-03-07 15:01 绝不原创的飞龙 阅读(54) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\exceptions.py """ This module contains exceptions. """ # 定义一个自定义异常类 ShowdownException,继承自内置异常类 Exception class ShowdownException( 阅读全文
posted @ 2024-03-07 15:00 绝不原创的飞龙 阅读(28) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\environment\move_category.py # 导入需要的模块 from enum import Enum, auto, unique # 定义一个枚举类 MoveCategory,表示一个移动类别 @unique class MoveCate 阅读全文
posted @ 2024-03-07 14:58 绝不原创的飞龙 阅读(51) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\environment\double_battle.py # 从 logging 模块中导入 Logger 类 from logging import Logger # 从 typing 模块中导入 Any, Dict, List, Optional, Un 阅读全文
posted @ 2024-03-07 14:57 绝不原创的飞龙 阅读(50) 评论(0) 推荐(0)
摘要: .\PokeLLMon\poke_env\concurrency.py # 导入必要的模块 import asyncio import atexit import sys from logging import CRITICAL, disable from threading import Thre 阅读全文
posted @ 2024-03-07 14:52 绝不原创的飞龙 阅读(58) 评论(0) 推荐(0)
摘要: 原文:stockcharts.com/school/doku.php?id=chart_school:technical_indicators 译者:飞龙 协议:CC BY-NC-SA 4.0 相对强度指数(RSI) 目录 相对强度指数(RSI) 介绍 计算 参数 超买-超卖 背离 失败摆动 趋势识 阅读全文
posted @ 2024-03-07 13:56 绝不原创的飞龙 阅读(229) 评论(0) 推荐(0)
上一页 1 ··· 659 660 661 662 663 664 665 666 667 ··· 851 下一页