Skip to content
Snippets Groups Projects
Commit 08c56a93 authored by Luigi Sbailo's avatar Luigi Sbailo
Browse files

Update logos

parent 76ca5f50
No related branches found
No related tags found
No related merge requests found
assets/proto_archetype_clustering_sisso/logo_HU.png

449 KiB

%% Cell type:markdown id: tags:
<img src="assets/proto_archetype_clustering_sisso/header.jpg" width="900">
%% Cell type:markdown id: tags:
<img style="float: left;" src="assets/proto_archetype_clustering_sisso/logo_NOMAD.png" width=300>
<img style="float: right;" src="assets/proto_archetype_clustering_sisso/logo_MPG.png" width=170>
<img style="float: left;" src="assets/proto_archetype_clustering_sisso/logo_MPG.png" width=150>
<img style="float: left; margin-top: -10px" src="assets/proto_archetype_clustering_sisso/logo_NOMAD.png" width=250>
<img style="float: left; margin-top: -5px" src="assets/proto_archetype_clustering_sisso/logo_HU.png" width=130>
%% Cell type:code id: tags:
``` python
from proto_archetype_clustering_sisso import PrimarySpaceParams,DerivedSpaceParams,MyKmeans,MyDeepAA,MySisso,Repr2Members,ExecutionType
from copy import copy
data_csvpath = "./data/proto_archetype_clustering_sisso/cubic_perovskites.csv"
interm_results_path = None
basic_params = PrimarySpaceParams(data_csvpath,"lat").deterministic()
primary_space_params = copy(basic_params)
derived_space_params = DerivedSpaceParams(**basic_params._asdict())
sisso_exe_params = copy(derived_space_params)
kmeans_prim_30 = MyKmeans(primary_space_params,30)
kmeans_der_30 = MyKmeans(derived_space_params,30)
deppaa_5 = MyDeepAA(primary_space_params,1,1,1,1,4,500)
ssisso_km_prim_30 = MySisso(sisso_exe_params,kmeans_prim_30,"singletask_on_representatives")
msisso_km_der_30 = MySisso(sisso_exe_params,kmeans_der_30,"multitask_on_all")
ssisso_deepaa_5 = MySisso(sisso_exe_params,deppaa_5,"singletask_on_representatives")
```
%% Cell type:code id: tags:
``` python
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment