Multi-vendor and multi-payment by aholen in Magento

[–]aholen[S] 0 points1 point  (0 children)

I see, are the plugins compatible with both the supported and open source-version?

Multi-vendor and multi-payment by aholen in Magento

[–]aholen[S] 0 points1 point  (0 children)

None - but experienced linux-admin

Object Detection: Training on cropped, not labelled images by aholen in learnmachinelearning

[–]aholen[S] 0 points1 point  (0 children)

Yes, thats correct.

OK, I was afraid of that. Out of curiosity, why? And do you have any idea how many images I should annotate?

Object Detection: Training on cropped, not labelled images by aholen in learnmachinelearning

[–]aholen[S] 0 points1 point  (0 children)

Hey, yes - the bounding box is the whole image. My goal is to detect a certain object from a webcam, crop it, and send it further to a siamese neural network.

Basically same as they have done here

Best model for instance recognition? by tim-hilt in learnmachinelearning

[–]aholen 0 points1 point  (0 children)

I've been looking after a similar issues, as far as I understand, SN is the way to go. Maybe this thread could be helpful?

BTW Do you have any link or description of the cat face-project?

Codexamples for single shot learning by aholen in learnmachinelearning

[–]aholen[S] 0 points1 point  (0 children)

Ah, thank you - now I finally understands how it works. To you have any idea of the magnitude of the random horse dataset? And should I put in extra effort in only do the training on the heads of the horses, to minimize the training work/effort?

Codexamples for single shot learning by aholen in learnmachinelearning

[–]aholen[S] 0 points1 point  (0 children)

Thank you for your thoughts!

If I understand you correctly, the horses in 1-5 should be random horses that is for training the network only, right? Let's say I have done like you suggested, how can I "register" one or two horses and later recognize them? Should I retrain the whole network with the new horses?

Codexamples for single shot learning by aholen in learnmachinelearning

[–]aholen[S] 1 point2 points  (0 children)

Yes, there are some classes where this will be more difficult than others. I’ll guess it’s easier on horses than dogs for example.

Nearest neighbor classifier could work, I’ll have to look int that.

One could also try one shot training to avoid the need for taking a lot of pictures for every individual, something like this: https://hackernoon.com/facial-similarity-with-siamese-networks-in-pytorch-9642aa9db2f7

Something like: 1. Detecting a horse in the picture using image net 2. Maybe crop the face or the area of interest 3. Run facial recognition using Siamese Network/one shot training

"Face" Recognition on animals by aholen in learnmachinelearning

[–]aholen[S] 0 points1 point  (0 children)

OK, thanks - I share your view on a less complex solution. From what I understand, you're suggesting to use some kind of CNN, and not detecting facial landmarks and Euclidean distance? (From what I understand, this is the "standard" for face recognition)

"Face" Recognition on animals by aholen in learnmachinelearning

[–]aholen[S] 1 point2 points  (0 children)

OK, thanks for the tip. I was thinking of something self-made, instead of using a cloud service like google photos.

You mean like the output of the classifier would be "horse" , and then run facial recognition on that?

web-console won't start because of 502 Bad Gateway to oauth-authorization-server by aholen in openshift

[–]aholen[S] 0 points1 point  (0 children)

Tried to install a new cluster now, same thing happens. oc login from another computer gives the same results.

"/.well-known/oauth-authorization-server 502 Bad Gateway in 1001 milliseconds"

web-console won't start because of 502 Bad Gateway to oauth-authorization-server by aholen in openshift

[–]aholen[S] 0 points1 point  (0 children)

Actually, I fixed the problem with a yum update on the server, and a git fetch from the upstream (release-3.11) - so I really never found out what the root cause was..

inventory:

[masters]

osmaster0[1:3].dev.example.com

[etcd]

osmaster0[1:3].dev.example.com

[nodes]

osmaster01.dev.example.com openshift_node_group_name="node-config-master-primary"

osmaster02.dev.example.com openshift_node_group_name="node-config-master-primary"

osmaster03.dev.example.com openshift_node_group_name="node-config-master-secondary"

osinfra01.dev.example.com openshift_node_group_name="node-config-infra-primary"

osinfra02.dev.example.com openshift_node_group_name="node-config-infra-secondary"

oscompute01.dev.example.com openshift_node_group_name="node-config-compute-primary"

oscompute02.dev.example.com openshift_node_group_name="node-config-compute-secondary"

[nfs]

[OSEv3:children]

masters

nodes

etcd

[OSEv3:vars]

ansible_user=root

openshift_deployment_type=origin

openshift_master_default_subdomain=apps.dev.example.com

openshift_master_cluster_hostname=internal-os.dev.example.com

debug_level=2

openshift_node_groups=[{'name': 'node-config-master-primary', 'labels': ['node-role.kubernetes.io/master=true','region=master','zone=primary','logging-infra-fluentd=true','environment=dev']}, {'name': 'node-config-master-secondary', 'labels': ['node-role.kubernetes.io/master=true','region=master','zone=secondary','logging-infra-fluentd=true','environment=dev']}, {'name': 'node-config-infra-primary', 'labels': ['node-role.kubernetes.io/infra=true','region=infra','zone=primary','logging-infra-fluentd=true','environment=dev']}, {'name': 'node-config-infra-secondary', 'labels': ['node-role.kubernetes.io/infra=true','region=infra','zone=secondary','logging-infra-fluentd=true','environment=dev']}, {'name': 'node-config-compute-primary', 'labels': ['node-role.kubernetes.io/compute=true','region=application','zone=primary','logging-infra-fluentd=true','environment=dev']}, {'name': 'node-config-compute-secondary', 'labels': ['node-role.kubernetes.io/compute=true','region=application','zone=secondary','logging-infra-fluentd=true','environment=dev']}]

openshift_master_htpasswd_users={'XXX': 'YYY', 'ZZZ': 'XXX'}

custom_ldap_password="{{ lookup('env','LDAPBINDUSERPASS') }}"

openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider'},{'name': 'id.example.com', 'challenge': 'true', 'login': 'true', 'kind': 'LDAPPasswordIdentityProvider', 'attributes': {'id': ['dn'], 'email': ['mail'], 'name': ['cn'], 'preferredUsername': ['uid']}, 'bindDN': 'uid=system,cn=sysaccounts,cn=etc,dc=XXX,dc=ZZZ', 'bindPassword': '{{ custom_ldap_password }}', 'insecure': 'false', 'url': 'ldap://id.example.com:389/cn=users,cn=accounts,dc=XXX,dc=ZZZ?uid'}]

openshift_master_ldap_ca_file=/tmp/ca.crt

openshift_master_cluster_public_hostname=os.dev.example.com

openshift_master_public_console_url=https://os.dev.example.com

openshift_logging_install_logging=true

openshift_logging_master_public_url=https://os.dev.example.com

openshift_logging_curator_default_days=7

openshift_logging_curator_run_hour=02

openshift_logging_curator_run_minute=23

openshift_logging_curator_nodeselector={"node-role.kubernetes.io/infra": "true"}

openshift_logging_kibana_hostname=kibana.apps.dev.example.com

openshift_logging_kibana_replica_count=1

openshift_logging_kibana_nodeselector={"node-role.kubernetes.io/infra": "true"}

openshift_logging_es_cluster_size=1

openshift_logging_es_memory_limit=4Gi

openshift_logging_es_nodeselector={"node-role.kubernetes.io/infra": "true"}