ValueError: DigMontage

Hello!
i have problems with setting electrode locations.

My code is:
montage = β€˜standard_1020’
raw.set_montage(montage)

and the error is:
ValueError: DigMontage is only a subset of info. There are 16 channel positions not present in the DigMontage. The channels missing from the montage are:

[β€˜L_Mast-0’, β€˜R_Mast-0’, β€˜L_Sup-0’, β€˜R_Sup-0’, β€˜L_Lat-0’, β€˜R_Lat-0’, β€˜L_Inf-0’, β€˜R_Inf-0’, β€˜L_Mast-1’, β€˜R_Mast-1’, β€˜L_Sup-1’, β€˜R_Sup-1’, β€˜L_Lat-1’, β€˜R_Lat-1’, β€˜L_Inf-1’, β€˜R_Inf-1’].

Consider using inst.rename_channels to match the montage nomenclature, or inst.set_channel_types if these are not EEG channels, or use the on_missing parameter if the channel positions are allowed to be unknown in your analyses.

I dont know what is this, help please!
Thanks

Hello, those channel names are not part of the 10-20 system and hence you cannot use them with the 10-20 template montage in MNE (unless you rename the channels). If you have a montage file supplied by the cap manufacturer, or digitized sensor locations, you can use those with MNE …

Richard