mirror of
https://github.com/hsokolowski/iTree.git
synced 2026-05-19 02:54:29 -04:00
changed name of web + add author name
This commit is contained in:
@@ -2,12 +2,14 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/logo-tree.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="author" content="Hubert Sokołowski" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
content="The iTree as a InteractiveTree is an intuitive web tool that enables the semi-automatic induction od decision trees.
|
||||
User can manually modify the generated tree stucture by expandingor pruning it as needed."
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<!--
|
||||
@@ -24,7 +26,7 @@
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
<title>iTree - powered by Hubert Sokołowski</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
|
||||
BIN
public/logo-tree.png
Normal file
BIN
public/logo-tree.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
@@ -32,7 +32,7 @@ function Navigation({ onPrepareConfig, setHeaders, onCrossValidation }) {
|
||||
const [allClazz, setAllClasses] = useState([]);
|
||||
const [config, setConfig] = useState({});
|
||||
const [isHeaders, setIsHeaders] = useState(true);
|
||||
const [isCrossValid, setIsCrossValid] = useState(true);
|
||||
const [isCrossValid, setIsCrossValid] = useState(false);
|
||||
const [folds, setFolds] = useState(10);
|
||||
const { attributes: options, onAttributesChange } = useAttributesContext();
|
||||
//const { attributes: ignoredAttributes, onIgnoredChange } = useIgnoredContext();
|
||||
@@ -135,7 +135,7 @@ function Navigation({ onPrepareConfig, setHeaders, onCrossValidation }) {
|
||||
>
|
||||
<Collapse in={isOpen} animateOpacity style={{ overflow: 'visible' }}>
|
||||
<Wrap spacing={2} align="center" alignContent="center" justify="center" px={2} py={3} zIndex={2}>
|
||||
<WrapItem border={'1px solid black'} borderRadius={'5px'} padding={2}>
|
||||
{/* <WrapItem border={'1px solid black'} borderRadius={'5px'} padding={2}>
|
||||
<FormControl id="cross-validation-input" width="auto">
|
||||
<FormHelperText mb={2} mt={0}>
|
||||
Run with Cross-validation?
|
||||
@@ -158,7 +158,7 @@ function Navigation({ onPrepareConfig, setHeaders, onCrossValidation }) {
|
||||
/>
|
||||
</Box>
|
||||
</FormControl>
|
||||
</WrapItem>
|
||||
</WrapItem> */}
|
||||
<WrapItem>
|
||||
<FormControl id="deploySet" width="auto">
|
||||
<FormHelperText mb={2} mt={0}>
|
||||
|
||||
Reference in New Issue
Block a user