标签:调用 存在 ase 显示 conf init class self strong
# -*- coding:utf-8
print(‘2‘)
class Config(object):
def __init__(self,GPU_number=38):
print(‘1‘)
if GPU_number == 147:
self.code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘
if GPU_number == 38:
self.code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘
如果属性放在构造方法中,需要用self.属性名,如果没有self直接是属性名,那么在实例化后,调用的时候会显示没有这个属性
或者也可以
class Config(object):
code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘
code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘
使得属性直接不放在方法中,
标签:调用 存在 ase 显示 conf init class self strong
原文地址:https://www.cnblogs.com/baitian963/p/13532745.html