mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
analysis.py - v 1.0.3.006
changelog v 1.0.3.006: - reorganized the imports list to be in alphabetical order
This commit is contained in:
parent
c2bd7ad32a
commit
a8e2391206
27
analysis.py
27
analysis.py
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#setup:
|
#setup:
|
||||||
|
|
||||||
__version__ = "1.0.3.005"
|
__version__ = "1.0.3.006"
|
||||||
|
|
||||||
__author__ = (
|
__author__ = (
|
||||||
"Arthur Lu <arthurlu@ttic.edu>, "
|
"Arthur Lu <arthurlu@ttic.edu>, "
|
||||||
@ -35,23 +35,24 @@ __all__ = [
|
|||||||
|
|
||||||
#now back to your regularly scheduled programming:
|
#now back to your regularly scheduled programming:
|
||||||
|
|
||||||
#import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002
|
#imports (now in alphabetical order! v 1.0.3.006):
|
||||||
import math
|
|
||||||
|
from bisect import bisect_left, bisect_right
|
||||||
|
import collections
|
||||||
import csv
|
import csv
|
||||||
|
from decimal import Decimal
|
||||||
import functools
|
import functools
|
||||||
|
from fractions import Fraction
|
||||||
|
from itertools import groupby
|
||||||
|
import math
|
||||||
|
import matplotlib
|
||||||
|
import numbers
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import scipy
|
||||||
|
from sklearn import *
|
||||||
|
#import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002
|
||||||
import time
|
import time
|
||||||
import torch
|
import torch
|
||||||
import scipy
|
|
||||||
import matplotlib
|
|
||||||
from sklearn import *
|
|
||||||
import collections
|
|
||||||
import numbers
|
|
||||||
from fractions import Fraction
|
|
||||||
from decimal import Decimal
|
|
||||||
from itertools import groupby
|
|
||||||
from bisect import bisect_left, bisect_right
|
|
||||||
|
|
||||||
|
|
||||||
def _init_device (setting, arg): #initiates computation device for ANNs
|
def _init_device (setting, arg): #initiates computation device for ANNs
|
||||||
if setting == "cuda":
|
if setting == "cuda":
|
||||||
|
Loading…
Reference in New Issue
Block a user