Found 19 repositories(showing 19)
Visual Blocks for ML is a Google visual programming framework that lets you create ML pipelines in a no-code graph editor. You – and your users – can quickly prototype workflows by connecting drag-and-drop ML components, including models, user inputs, processors, and visualizations.
ryu263
No description available
VisualBlockStudios
VisualBlock Studios Minecraft Server Host
visualblocksforml
No description available
Qredence
Our project enhances Trulens analytics through two key initiatives: developing an interactive visual node for integration in Jupyter notebooks, and creating a comprehensive RAG framework for Trulens documentation. These efforts aim to simplify and enrich the user experience with Trulens, making advanced data analysis more accessible and intuitive.
common-repository
Mirror of WordPress.org plugin: tinymce-visualblocks
RomanLegion69
No description available
Snowstache
No description available
caioiglesias
No description available
zhjch05
No description available
Tiankubb
No description available
wp-plugins
WordPress.org Plugin Mirror
Tiankubb
object7475452
WordPressBugBounty
No description available
evilspyboy
No description available
britannio
A demo ML pipeline created with Google's Visual Blocks website (visualblocks.withgoogle.com).
MahbubAlam231
Plugin for dragging visual selection by Damian Conway
Brotherhood94
VisualBlock has been developed to overcome the lack of a tool that, once identified an interesting region of a graph, would highlight some nodes, maybe even the neighbors and the edges that link them, and export the graph in a format of our choice, preferably in an image or in a format recognizable by Gephi.
Pabloinacap
<!DOCTYPE html> <html lang="es"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous"> <title>Area Propiedades</title> </head> <body> <header class="container-fluid bg-danger text-white"> <div class="row p-4"> <div class="col-lg-1 col-sm-1 col-md-1"> <img src="img/logo.png" class="img-fluid" alt=""/> </div> <div class="col-lg col-sm col-md pt-3"> <h1 class="text-waring text-center align-middle">Contacto</h1> </div> </div> </header> <section class="container-fluid pt-5">Contactenos <div class="row"> <div class="col-sm-6"> <div class="card"> <h5> <label for="nombre-txt">Nombre</label> <input type="text" id="nombre-txt"class="form-control"> </div> <div class="form-group mt-5"> <label for="nombre-txt">Apellido</label> <input type="text" id="nombre-txt"class="form-control"> </div> <div class="form-group mt-5"> <label for="nombre-txt">Correo Electrónico</label> <input type="text" id="nombre-txt"class="form-control"> </div> <div class="form-group mt-5"> <label for="nombre-txt">Número de Teléfono</label> <input type="text" id="nombre-txt"class="form-control" </div> <div class="form-group mt-5"> <label for="nombre-txt">Mensaje</label> <input type="text" id="nombre-txt"class="form-control" </div> <div class="form-group mt-5"> window.areapropiedades = []; window.mostrarErrores = (errores)=>{ let erroresDiv = document.querySelector("#errores-div"); let ul = document.createElement("ul"); ul.classList.add("alert","alert-warning"); errores.forEach((pablo)=>{ let li = document.createElement("li"); li.innerText = pablo; ul.appendChild(li); }); erroresDiv.appendChild(ul); }; //Genera la tabla de pokemones del lado derecho window.cargarPokemones = ()=>{ let tbody = document.querySelector("#tabla-pokemones > tbody"); tbody.innerHTML = ""; //Limpiar window.propiedades.forEach((p)=>{ // Página de Inicio Quienes Somos Nuestros Agentes Contacto //Por cada propiedad voy a: //1. Crear un tr let tr = document.createElement("tr"); //2. Crear un td para cada cosa let tdNombre = document.createElement("td"); //acceder a un atributo del objeto, properties tdNombre.innerText = p.nombre; if(p.legendario){ tdNombre.classList.add("text-warning"); } let tdDescripcion = document.createElement("td"); tdDescripcion.innerHTML = p.descripcion; let tdLegendario = document.createElement("td"); //Operador ternario (equivalente a hacer un if, pero en una linea) tdLegendario.innerText = p.legendario? "Sí": "No"; let tdTipo = document.createElement("td"); if(p.tipo != ""){ //Mostrar el icono //1. Crear el img //TODO: Definir esto en una clase tdTipo.style="width: 80px"; let img = document.createElement("img"); img.src = "img/"+p.tipo; img.classList.add("img-fluid"); //2. Agregarlo al td tdTipo.appendChild(img); } //3. Agregar los td al tr IMPORTANTE AGREGARLOS EN ORDEN tr.appendChild(tdNombre); tr.appendChild(tdTipo); tr.appendChild(tdDescripcion); tr.appendChild(tdLegendario); //4. Agregar tr al tbody tbody.appendChild(tr); }); }; window.guardarPokemon = (pokemon)=>{ //buscar personas para trabajar en el proyecto window.pokemones.push(pokemon); window.cargarPokemones(); }; //Esto es configuracion de tinymce tinymce.init({ selector: '#descripcion-txt', height: 200, menubar: false, plugins: [ 'advlist autolink lists link image charmap print preview anchor', 'searchreplace visualblocks code fullscreen', 'insertdatetime media table paste code help wordcount' ], toolbar: 'undo redo | formatselect | ' + 'bold italic backcolor | alignleft aligncenter ' + 'alignright alignjustify | bullist numlist outdent indent | ' + 'removeformat | help', content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }' }); const botonRegistro = document.querySelector("#registrar-btn"); //document.getElementById("registrar-btn") //TODO: Hacer funcionar el botón limpiar botonRegistro.addEventListener('click', ()=>{ let erroresDiv = document.querySelector("#errores-div"); erroresDiv.innerHTML = "";//Limpia el div de los errores cada vez que se hace click //Hacer las cosas para validar el formulario. let nombre = document.querySelector("#nombre-txt").value.trim(); let descripcion = tinymce.get('descripcion-txt').getContent(); let tipo = document.querySelector("#tipo-select").value; let legendario = document.querySelector("#legendario-chx").checked; let errores = []; //array o lista, arreglo if(nombre === ''){ errores.push("Debe ingresar nombre"); } if(descripcion === ''){ errores.push("Debe ingresar una descripcion"); } if(errores.length === 0){ //Guardar un pokemon // let lista = []; // let obj = {}; let pokemon = {};//creando un nuevo "pokemon" pokemon.nombre = nombre; pokemon.descripcion = descripcion; pokemon.tipo = tipo; pokemon.legendario = legendario; window.guardarPokemon(pokemon); }else { //Mostrar errores por pantalla window.mostrarErrores(errores); } });
All 19 repositories loaded