latin ext e

This commit is contained in:
minjaesong
2026-03-10 22:51:44 +09:00
parent 194cda93fe
commit 199519fe1c
7 changed files with 38 additions and 8 deletions

Binary file not shown.

View File

@@ -7,7 +7,7 @@
set -euo pipefail
cd "$(dirname "$0")"
RUNS="${1:-10}"
RUNS="${1:-42}"
shift 2>/dev/null || true
EXTRA_ARGS="$*"
PYTHON="${PYTHON:-.venv/bin/python3}"

View File

@@ -188,10 +188,10 @@ def build_model():
class Keminet(nn.Module):
def __init__(self):
super().__init__()
self.conv1 = nn.Conv2d(1, 32, 5, padding=1)
self.conv1 = nn.Conv2d(1, 32, 7, padding=1)
self.conv2 = nn.Conv2d(32, 64, 7, padding=1)
self.fc1 = nn.Linear(64, 256)
# self.fc2 = nn.Linear(256, 48)
# self.fc2 = nn.Linear(256, 128)
self.output = nn.Linear(256, 12)
self.tf = nn.SiLU()