This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { ResponsiveContainer, LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from "recharts"; | |
| const showPassRate1 = false; | |
| const data = [ | |
| { name: "TQ1_0", unsloth: undefined, aider: 51.6, pass_rate_1: 19.1 }, | |
| { name: "IQ1_M", unsloth: 79.8, aider: 56.9, pass_rate_1: 24.0 }, | |
| { name: "TQ1_0-thinking", unsloth: undefined, aider: 60.4, pass_rate_1: 26.2 }, | |
| { name: "IQ2_XXS", unsloth: 80.3, aider: undefined, pass_rate_1: undefined }, | |
| { name: "IQ2_M", unsloth: 80.78, aider: 61.3, pass_rate_1: 36.4 }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {#- Unsloth template fixes #} | |
| {% if not add_generation_prompt is defined %} | |
| {% set add_generation_prompt = false %} | |
| {% endif %} | |
| {% if enable_thinking is defined and enable_thinking is false %} | |
| {% set thinking = false %} | |
| {% elif enable_thinking is defined and enable_thinking is true %} | |
| {% set thinking = true %} | |
| {% elif not thinking is defined %} | |
| {% set thinking = false %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if not add_generation_prompt is defined %} | |
| {% set add_generation_prompt = false %} | |
| {% endif %} | |
| {% if not thinking is defined %} | |
| {% set thinking = false %} | |
| {% endif %} | |
| {% set ns = namespace(is_first=false, is_tool=false, system_prompt='', is_first_sp=true, is_last_user=false) %} | |
| {%- for message in messages %} | |
| {%- if message['role'] == 'system' %} | |
| {%- if ns.is_first_sp %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| We have some code: | |
| **bjj_calculate_match_difficulty.js** | |
| ```js | |
| function calculateMatchDifficulty(practitioner1, practitioner2) { | |
| const beltRanks = ['white', 'blue', 'purple', 'brown', 'black']; | |
| // Calculate the difference in belt ranks | |
| const beltDiff = beltRanks.indexOf(practitioner2.belt) - beltRanks.indexOf(practitioner1.belt); | |
| // Calculate the cumulative effect of age, weight, and height |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVRLocomotion.cs b/Assets/Plugins/RootMotion/FinalIK/IK So | |
| lvers/IKSolverVRLocomotion.cs | |
| index 122de1b..0b16128 100644 | |
| --- a/Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVRLocomotion.cs | |
| +++ b/Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVRLocomotion.cs | |
| @@ -12,12 +12,6 @@ namespace RootMotion.FinalIK { | |
| [System.Serializable] | |
| public class Locomotion { | |
| - [Tooltip("The toe/foot target.")] |
NewerOlder