Add files via upload

This commit is contained in:
David Rotermund 2024-08-12 10:58:27 +02:00 committed by GitHub
parent f144c97dc7
commit 8ada3ce430
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,6 @@ import scipy # type: ignore
import json
import os
from jsmin import jsmin # type:ignore
from functions.get_trials import get_trials
def func_pow(x, a, b, c):
@ -76,9 +75,6 @@ def plot(
print(f"ERROR: could not find raw directory {raw_data_path}!!!!")
exit()
trials = get_trials(raw_data_path, experiment).numpy()
assert trials.shape[0] > 0
with open(f"meta_{config["mouse_identifier"]}_exp{experiment:03d}.json", "r") as file:
metadata = json.loads(jsmin(file.read()))