We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 27 columns, instead of 23 in line 4.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ApplicationID,UCASCourse,RouteCode,StudentID,UCASID,UCASChoice,Surname,Forename1,Forename2,Forename3,ContactTelephone,ApplicationCategory,ApplicationStatus,CourseBlock,Decision1,Response1,Decision2,Response2,Decision3,Response3,ChangeCourse,DateOfBirth,HomeEmail,ApplicationCreated,ExtraRoundNo,Clearing,Nationality | |
huVjuwlbhjybagpwad6LZdhapusk1mo0Tty3Ufmjd4xjgoX5ncgza5uzyhcx5zxt,H690,USEET,753249857,4220473825,2,Gazelle,Inez,,,555-3239,HCC,A-A,11,R,,,,,,N,2004-01-01,[email protected],2024-06-20,,N,Citizen of Madagascar | |
3rud,G1N3,UMMASACT,417163763,1796931139,3,Rabbit,Syreeta,,,555-0755,OEC,A-RPL,11,R,,,,,,N,2007-01-01,[email protected],2024-07-21,,N,Citizen of Madagascar | |
ibwdg4dp4yji9lnbwvrwweyxdgY5nuygsogrx5aSGgb,R900,UJFRXPGW,029797677,2074987345,4,Warthog,Royal,,,555-3663,OEP,A-WE,11,R,,,,,,N,2006-01-01,[email protected],2024-05-17,,N,Vietnamese | |
SA5bbjxh9wvbYpSexAmtgVmlyrlt1a7pbwwmt88uYedtdbuAyi8ykrrqfcabhcmC,A100,USPCM,565417479,4778031771,5,Echidna,Donette,,,,HEP,A-WR,11,U,I,R,,,,N,2004-10-25,[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Calculating QSAR model... | |
RANDOM FOREST: 88(train), 22(test), 10 repeats | |
Warning: final_rf not assigned, so selecting last rf to continue | |
train_x: [[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Debuggable { | |
fn debug(self) -> Self; | |
} | |
impl<T> Debuggable for T | |
where | |
T: Sized + std::fmt::Debug, | |
{ | |
fn debug(self) -> Self { | |
dbg!(self) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Debuggable { | |
fn debug(self) -> Self | |
where | |
Self: Sized + std::fmt::Debug, | |
{ | |
dbg!(self) | |
} | |
} | |
impl<T> Debuggable for T {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Override the default LocalDateTime formatting | |
// (the default splits out each date.time element as a seperate field: hour, minute, day, etc) | |
def newInstance(url: String): Pusher = { | |
import com.google.gson._ | |
import java.lang.reflect.Type | |
val localDateTimeSerializer: JsonSerializer[LocalDateTime] = new JsonSerializer[LocalDateTime] { | |
def serialize(src: LocalDateTime, typeOfSrc: Type, context: JsonSerializationContext): JsonElement = | |
new JsonPrimitive(src.toString()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/Developer/darn via C darn | |
❯ conda install -c conda-forge jupyterlab -y | |
Collecting package metadata (current_repodata.json): done | |
Solving environment: done | |
## Package Plan ## | |
environment location: /Users/richard/opt/miniconda3/envs/darn | |
added / updated specs: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jan | Length | Difference | Additional daylight (seconds) | Length of day (hours) | |
---|---|---|---|---|---|
01/01/2020 | 08:01:54 | 01:00 | 60.00 | 8.03 | |
02/01/2020 | 08:03:01 | 01:06 | 66.00 | 8.05 | |
03/01/2020 | 08:04:14 | 01:12 | 72.00 | 8.07 | |
04/01/2020 | 08:05:33 | 01:18 | 78.00 | 8.09 | |
05/01/2020 | 08:06:57 | 01:24 | 84.00 | 8.12 | |
06/01/2020 | 08:08:27 | 01:29 | 89.00 | 8.14 | |
07/01/2020 | 08:10:02 | 01:35 | 95.00 | 8.17 | |
08/01/2020 | 08:11:43 | 01:40 | 100.00 | 8.20 | |
09/01/2020 | 08:13:28 | 01:45 | 105.00 | 8.22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
******************************************************************************* | |
* irace: An implementation in R of Iterated Race | |
* Version: 3.1.2112M | |
* Copyright (C) 2010-2018 | |
* Manuel Lopez-Ibanez <[email protected]> | |
* Jeremie Dubois-Lacoste | |
* Leslie Perez Caceres <[email protected]> | |
* | |
* This is free software, and you are welcome to redistribute it under certain | |
* conditions. See the GNU General Public License for details. There is NO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is an example of specifying instances with a file. | |
# Each line is an instance relative to trainInstancesDir | |
# (see scenario.txt.tmpl) and an optional sequence of instance-specific | |
# parameters that will be passed to target-runnerx when invoked on that | |
# instance. | |
# Empty lines and comments are ignored. | |
experiments/atari.jl --id frostbite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CGP.jl (julia_v0.7 *)$ julia --project=. run_tests.jl | |
[ Info: Chromosome tests | |
CGPChromo | |
┌ Warning: `rand(dims::Dims)` is deprecated, use `rand(Float64, dims)` instead. | |
│ caller = macro expansion at chromosome.jl:14 [inlined] | |
└ @ Core ~/Developer/evolution/cga/forked/CGP.jl/test/chromosome.jl:14 | |
┌ Warning: `a::Number + b::AbstractArray` is deprecated, use `a .+ b` instead. | |
│ caller = + at operators.jl:502 [inlined] | |
└ @ Core ./operators.jl:502 | |
PCGPChromo |
NewerOlder