mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 13:53:48 +01:00
Merge branch 'QUEST4' into QUEST4-bad-DOI
This commit is contained in:
commit
db39da25ff
@ -731,13 +731,13 @@ draft: false
|
|||||||
<th scope="col">Count</th>
|
<th scope="col">Count</th>
|
||||||
<th scope="col">Min</th>
|
<th scope="col">Min</th>
|
||||||
<th scope="col">Max</th>
|
<th scope="col">Max</th>
|
||||||
<th scope="col">MSE</th>
|
<th scope="col"><abbr title="Mean signed error">MSE</abbr></th>
|
||||||
<th scope="col">MAE</th>
|
<th scope="col"><abbr title="Mean absolute error">MAE</abbr></th>
|
||||||
<th scope="col">Median</th>
|
<th scope="col">Median</th>
|
||||||
<th scope="col">Absolute Median</th>
|
<th scope="col">Absolute Median</th>
|
||||||
<th scope="col">RMSE</th>
|
<th scope="col"><abbr title="Root-mean square error ">RMSE</abbr></th>
|
||||||
<th scope="col">Variance</th>
|
<th scope="col">Variance</th>
|
||||||
<th scope="col">SDE</th>
|
<th scope="col"><abbr title="Standard deviation of the errors">SDE</abbr></th>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -7,6 +7,7 @@ from enum import IntEnum,auto,unique,IntFlag
|
|||||||
from .Format import Format
|
from .Format import Format
|
||||||
import re
|
import re
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import json
|
||||||
|
|
||||||
class state:
|
class state:
|
||||||
def __init__(self,number, multiplicity, symetry):
|
def __init__(self,number, multiplicity, symetry):
|
||||||
@ -360,7 +361,7 @@ class dataFileBase(object):
|
|||||||
str(ex.value) if ex.value is not None else "_",
|
str(ex.value) if ex.value is not None else "_",
|
||||||
str(ex.T1) if ex.T1 is not None else "_",
|
str(ex.T1) if ex.T1 is not None else "_",
|
||||||
str(ex.oscilatorForces) if ex.oscilatorForces is not None else "_",
|
str(ex.oscilatorForces) if ex.oscilatorForces is not None else "_",
|
||||||
str(ex.isUnsafe).lower())
|
json.dumps(ex.isUnsafe))
|
||||||
f.write(mystr)
|
f.write(mystr)
|
||||||
class method:
|
class method:
|
||||||
def __init__(self,name, *args):
|
def __init__(self,name, *args):
|
||||||
|
Loading…
Reference in New Issue
Block a user