cat introspection_query.json
{
"query": "query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
class ExplicitMF(): | |
def __init__(self, | |
ratings, | |
n_factors=40, | |
learning='sgd', | |
item_fact_reg=0.0, | |
user_fact_reg=0.0, | |
item_bias_reg=0.0, | |
user_bias_reg=0.0, | |
verbose=False): |
The standard names for indexes in PostgreSQL are:
{tablename}_{columnname(s)}_{suffix}
where the suffix is one of the following:
pkey
for a Primary Key constraint;key
for a Unique constraint;excl
for an Exclusion constraint;idx
for any other kind of index;