feat: graphs + models + updated finished graph code + data in csv

This commit is contained in:
RobinMeersman 2025-12-16 10:06:47 +01:00
parent f3b07c1df3
commit 1abc2f5113
34 changed files with 76 additions and 73 deletions

View file

@ -1,18 +1,16 @@
import contextlib
import math
import struct
from collections import deque
from decimal import Decimal
import numpy as np
import torch
import torch.nn as nn
from tqdm import tqdm
import struct
from src.models import AutoEncoder
from src.utils import reference_ae
NUMBITS = 64
NUMBITS = 16
def probs_to_freqs(probs, total_freq=8192):