mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
fixes
This commit is contained in:
parent
0198d6896b
commit
3894eb481c
BIN
data analysis/analysis/__pycache__/titanlearn.cpython-37.pyc
Normal file
BIN
data analysis/analysis/__pycache__/titanlearn.cpython-37.pyc
Normal file
Binary file not shown.
@ -33,13 +33,13 @@ __all__ = [
|
||||
|
||||
import torch
|
||||
import torch.optim as optim
|
||||
from os import *
|
||||
from os import system, name
|
||||
|
||||
def clear():
|
||||
if os.name == 'nt':
|
||||
_ = os.system('cls')
|
||||
if name == 'nt':
|
||||
_ = system('cls')
|
||||
else:
|
||||
_ = os.system('clear')
|
||||
_ = system('clear')
|
||||
|
||||
def train(device, net, epochs, trainloader, optimizer, criterion):
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user