初始化项目,由ModelHub XC社区提供模型

Model: nvidia/Nemotron-Cascade-14B-Thinking
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-05 18:06:20 +08:00
commit f02c5eaafb
185 changed files with 242036 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from .context import assert_equal
import pytest
from sympy import asinh, Symbol
# x = Symbol('x', real=True);
# latex = "\\sinh(x)"
# math = process_sympy(latex)
# print("latex: %s to math: %s" %(latex,math))
#
# latex = "\\arcsinh(x)"
# math = process_sympy(latex)
# print("latex: %s to math: %s" %(latex,math))
#
# latex = "\\arsinh(x)"
# math = process_sympy(latex)
# print("latex: %s to math: %s" %(latex,math))
def test_arcsinh():
assert_equal("\\operatorname{arcsinh}\\left(1\\right)", asinh(1, evaluate=False))