yogesh

Results 9 issues of yogesh

In udc_predict.py file`INPUT_CONTEXT` consider as user entered input but why passed `POTENTIAL_RESPONSES` here already model train then why `INPUT_CONTEXT` not predict from trained data.

Is possible to in this model pass user defined data sets instead of Ubuntu-Dialog-Corpus. How should create user defined data to fit this model.

I tried this scripts with my resume but it not parsed exactly name, educational details and technical skills, how should I added user defined grammar ? How to write to...

In CornellData.py file I update some code and passed my data for QA format like this > {"lines":[{"text":"q1","lineId":1},{"text":"a1","lineId":2"}]} I passed only 10-12 questions for testing. If I passed exact sentences...

Is possible to modify script for getting user input and show display results. Now it take only one input for testing and for one single input need to run whole...

I tried following code ``` val df = spark.sqlContext.read.format("com.samelamin.spark.bigquery").option("tableReferenceSource","p1:test.tname").load() df.show ``` first time it show result proper but I tried second time same code ``` val df = spark.sqlContext.read.format("com.samelamin.spark.bigquery").option("tableReferenceSource","p1:test.tname").load() df.show...

bug

Writing empty data frame with column name show following error ; Data frame as below +------+---------+-------+ |id|start|end| +------+---------+-------+ +------+---------+-------+ root |-- id: string (nullable = true) |-- start: long (nullable...

I have following data frame ``` var data = Seq( ("1", "A", "P"), ("2", "B", "Q"), ("3", "C", "R"), ("4", "D", "S"), ("5", "E", "T") ).toDF("id", "key", "key_val") ``` in...

The given document is great, but I need to understand one thing when I read from more than one tables in readshift using `read` then every time I passed `.option('url','jdbcurl')`...