VisEvol: Visual Analytics to Support Hyperparameter Search through Evolutionary Optimization https://doi.org/10.1111/cgf.14300
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
VisEvol/frontend/src/components/Knowledge.vue

27 lines
453 B

<template>
<button style="float: right;" class="btn-outline-primary"
id="know"
v-on:click="knowClass">
<font-awesome-icon icon="file-export" />
{{ valueKnowE }}
</button>
</template>
<script>
import { EventBus } from '../main.js'
export default {
name: 'Knowledge',
data () {
return {
valueKnowE: 'Knowledge extraction'
}
},
methods: {
knowClass () {
EventBus.$emit('OpenModal')
}
}
}
</script>