Questions tagged [loaddata]
193 questions
1
vote
0 answers
Read in feather file directly from GitHub in R
How can I read in a .feather file from the web (e.g. GitHub) in R? I can read formats as .csv or .dta from GitHub directly as raw
# CSV
coursedata <- read.csv(file =…

Marco
- 2,368
- 6
- 22
- 48
1
vote
1 answer
When loading data it gives an error " InvalidCastException: Specified cast is not valid "
e.g. I want to select a character and save his number
private Storage storage;
void Awake()
{
storage = new Storage();
}
public void SelectChar1()
{
numberChar = 1;//byte
storage.Save(DataPlayerSave);//save works fine
}
on…

Azanai
- 11
- 2
1
vote
1 answer
How to load data with BACKSLASH n (\n) into Snowflake table?
I'm trying to load data from AWS S3 into snowflake table, using the following COPY INTO command:
COPY INTO "TABLE_NAME"
FROM @//
FILE_FORMAT = (type=CSV SKIP_HEADER = 1
RECORD_DELIMITER="\n"
FIELD_DELIMITER=","…

user16223287
- 21
- 3
1
vote
2 answers
How to load data into program as double? (not string) in c# (window form application - visual studio)
I dont know how to ask, but i want to load data in double not in string as you can see in the code. Can i change them in double? i want to store them in array because i want to find maximum value from the data. cannot find them in string.
private…

hycal99
- 11
- 4
1
vote
0 answers
How to load flattened 3D data from .dat files in a directory for training a neural network in TensorFlow
I have a data set containing 3-dimensional labeled numerical (float) data stored in two directories named, say, NEGATIVE and POSITIVE, respectively. In each directory, each data point (a vector actually) is written in an individual .dat (or .txt)…

Dennis
- 109
- 2
1
vote
0 answers
Question about tff.simulation.datasets.stackoverflow.load_data(cache_dir = None)
I've been using this function to load data from stackoverflow data_set. However, one problem occurs that every time I use this function and set cache_dir to the location of the keras/dataset or the location of the cache, it still tries to download…

Hangrui Cao
- 11
- 1
1
vote
0 answers
How to access content of array read by read_csv(), just like load_data()?
I would like to use pandas to prepare an array from a CSV file to then use in keras.
Here is an example of load_data() that I have, which works:
import tensorflow as tf
mnist = tf.keras.datasets.mnist
(x_train, y_train), (x_test, y_test) =…

KingOtto
- 840
- 5
- 18
1
vote
1 answer
AttributeError: 'Tensor' object has no attribute 'to_sparse'
I was trying out this tutorial using this Plant Leaves dataset (with over 35k images consisting .JPG, .PNG as well as .JPEG files) with tensorflow version 1.14
And I followed similar steps except; skipping "Load using keras.preprocessing" part. I…

Shashank Shukla
- 64
- 1
- 8
1
vote
0 answers
a binary read error occurred when using read.dta13 on a .dta file
I am trying to load in a STATA data file using read.dta13 from the readstata13 library. When I use the function read.dta13 on this .dta file I get the following error over and over:
char: a binary read error occurred.
What does this mean?
Here is…

ridley's mom
- 11
- 2
1
vote
0 answers
How to load JSON or see load-errors?
I am using a complex HTML5 page, but removed all Javascript, so it seems:
My Page