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 torch | |
import torch.utils.data | |
import torch.nn as nn | |
import torch.optim as optim | |
import numpy as np | |
import pandas as pd | |
from collections import Counter | |
from sklearn.model_selection import train_test_split |
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 numpy as np | |
import random | |
import sys | |
sys.setrecursionlimit(100000) # to temporarily solve Recursion Depth Limit issue | |
# Reference : | |
# https://www.reddit.com/r/learnmachinelearning/comments/fmx3kv/empirical_example_of_mcts_calculation_puct_formula/ | |
# PUCT formula : https://colab.research.google.com/drive/14v45o1xbfrBz0sG3mHbqFtYz_IrQHLTg#scrollTo=1VeRCpCSaHe3 |
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
v { version=2.9.8 file_version=1.2} | |
G {} | |
K {} | |
V {} | |
S {} | |
E {} | |
N -1490 -1370 -1480 -1370 { lab=Q1A} | |
N -1480 -1450 -1480 -1370 { lab=Q1A} | |
N -1480 -1450 -1460 -1450 { lab=Q1A} | |
N -1710 -1490 -1460 -1490 { lab=#net1} |
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
Version 4 | |
SHEET 1 2824 1108 | |
WIRE -128 16 -432 16 | |
WIRE 208 16 -128 16 | |
WIRE 576 16 208 16 | |
WIRE 864 16 576 16 | |
WIRE 1376 16 864 16 | |
WIRE 1920 16 1376 16 | |
WIRE 2288 16 1920 16 | |
WIRE 2624 16 2288 16 |
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
Version 4 | |
SHEET 1 880 680 | |
WIRE -832 -368 -960 -368 | |
WIRE -576 -368 -832 -368 | |
WIRE -480 -368 -576 -368 | |
WIRE -352 -368 -480 -368 | |
WIRE -304 -368 -352 -368 | |
WIRE -32 -368 -304 -368 | |
WIRE 240 -368 -32 -368 | |
WIRE 512 -368 240 -368 |
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
* | |
* Ver: 3.2 | |
* Name: 21555.ibs | |
* Rev: 0.3 | |
* Date: 10/1/2001 | |
* Source: From silicon level SPICE model at Intel Corporation. | |
* Notes: The following information corresponds to the ____ chip. | |
* Disclaimer: This information is for modeling purposes only and is not | |
* guaranteed. | |
* Copyright: Copyright 2000, Intel Corporation, All Rights Reserved. |
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
Version 4 | |
SHEET 1 1368 680 | |
WIRE 64 -224 -288 -224 | |
WIRE 288 -224 64 -224 | |
WIRE 544 -224 288 -224 | |
WIRE 544 -176 544 -224 | |
WIRE -288 -112 -288 -224 | |
WIRE 288 -80 288 -224 | |
WIRE 544 -32 544 -96 | |
WIRE 784 -32 544 -32 |
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
// | |
// segment_2.1 | |
// Loadable segment [0x0 - 0x350f] | |
// ram: 00100000-001002a7 | |
// | |
assume DF = 0x0 (Default) | |
00100000 7f 45 4c Elf64_Ehdr | |
46 02 01 | |
01 00 00 | |
00100000 7f db 7Fh e_ident_magi |
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
from __future__ import division | |
import torch | |
import torch.nn as nn | |
import torch.nn.functional as F | |
import numpy as np | |
from utils.mish import Mish | |
from utils.utils import build_targets, to_cpu, parse_model_config |
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
// | |
// segment_2.1 | |
// Loadable segment [0x0 - 0x1b0f] (disabled execute bit) | |
// ram: 00100000-00100237 | |
// | |
assume DF = 0x0 (Default) | |
00100000 7f 45 4c Elf64_Ehdr | |
46 02 01 | |
01 00 00 | |
00100000 7f db 7Fh e_ident_magi |