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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <errno.h> | |
// Структура для аргументов (предположим, что она уже определена) | |
typedef struct { | |
int s; | |
} arguments; |
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
import torch | |
def dabs_mean_std( | |
tensor1: torch.Tensor, | |
tensor2: torch.Tensor | |
): | |
dabs: torch.Tensor = torch.abs(tensor2 - tensor1) | |
mean = torch.mean(dabs) | |
std = torch.std(dabs) |
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
---@generic A, D | |
---@param head A | |
---@param tail D | |
---@return fun(): A, D | |
local function cons(head, tail) | |
return function () | |
return head, tail | |
end | |
end |
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
*> \brief \b CLAQZ3 | |
* | |
* =========== DOCUMENTATION =========== | |
* | |
* Online html documentation available at | |
* http://www.netlib.org/lapack/explore-html/ | |
* | |
*> \htmlonly | |
*> Download CLAQZ3 + dependencies | |
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/CLAQZ3.f"> |
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
#lang racket | |
(define/contract (reverse x) | |
(-> exact-integer? exact-integer?) | |
(cond ((= x 0) 0) | |
((< x 0) (- (reverse (- x)))) | |
(else (let ((reduced-x (floor (/ x 10))) | |
(digit (remainder (floor x) 10)) | |
(z (expt 10 (round (log x 10))))) |
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
diff --git a/cgt-nn-rev6wip.ipynb b/cgt-nn-rev6wip.ipynb | |
index 25792be..0b03781 100644 | |
--- a/cgt-nn-rev6wip.ipynb | |
+++ b/cgt-nn-rev6wip.ipynb | |
@@ -910,45 +910,45 @@ | |
" <td>...</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
- " <th>835</th>\n", | |
- " <td>evaluate_RegularNetwork_2_p0.99_N9</td>\n", |
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
import curses | |
from curses import wrapper | |
from typing import Any | |
import torch | |
import torch.nn as nn | |
import torch.optim as optim | |
from cgtnnlib.datasets import breast_cancer_dataset, car_evaluation_dataset, student_performance_factors_dataset | |
from cgtnnlib.AugmentedReLUNetwork import AugmentedReLUNetwork | |
from cgtnnlib.RegularNetwork import RegularNetwork | |
from cgtnnlib.training import train_model |
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
<image id="489" name="EKF/9-page-00001.jpg" width="2482" height="1755"> | |
<box label="QF" source="manual" occluded="0" xtl="1751.82" ytl="308.88" xbr="1783.53" ybr="357.04" z_order="0"> | |
<attribute name="Полюсность">1</attribute> | |
<attribute name="Description"></attribute> | |
</box> | |
<box label="KM" source="manual" occluded="0" xtl="1076.90" ytl="535.09" xbr="1121.10" ybr="577.20" z_order="0"> | |
<attribute name="Description"></attribute> | |
</box> | |
<box label="QF" source="manual" occluded="0" xtl="565.16" ytl="314.63" xbr="598.63" ybr="366.31" z_order="0"> | |
<attribute name="Полюсность">3</attribute> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder